WordPress开发中常用的包含文件函数get_template_part()
在PHP中,常用的包含文件函数有include和require。
在Wordpress中,其实也有一个内置的且更高效的包含文件函数:get_template_part()
get_template_part( 'products', 'page' );//包含主题目录下的products-page.php文件 get_template_part( 'products/content', 'page' );//包含主题目录下的products文件夹里面的content-page.php文件