wordpress主题

wordpress文件的嵌套

日期:2017-05-14 阅读:1265

dmandwp系统 - wordpress系统和DM系统区块建站>>


进入网易云课堂播放
    |    更多视频教程>

https://developer.wordpress.org/reference/functions/get_template_part

get_template_part( string $slug, string $name = null )   -- 两个参数

第一个参数可以带目录,

比如get_template_part( 'template-parts/page/content', 'image' );则是 template-parts/page/content-image.php

---------------------

https://developer.wordpress.org/reference/functions/get_footer/

get_footer( string $name = null )    --- 只一个参数。且不能带目录

get_footer('image') 则是模板目录下的footer-image.php

---------------

另外还有get_header和 get_sidebar等。

 

<<点击返回