我在插件中使用了整个模板,但我想使用get-template部分,这样我就可以重用原始模板中的页眉和页脚。代码如下:
add_filter( \'page_template\', \'template_reg\' );
function template_reg()
{
if ( is_page( ourdoctors_single_pg() ) ) {
$page_template = dirname( __FILE__ ).\'/templates/OurDoctors.php\';
return $page_template;
}
是否有任何方法可以使用部分模板而不是整个模板?我试着用
get_template_part
, 但似乎我必须在主题中加入模板。但是如何将模板放入插件中呢?