要对不同类型的页面重复使用同一模板,可以使用template_include
滤器
文档中给出的示例:
add_filter( \'template_include\', \'portfolio_page_template\', 99 );
function portfolio_page_template( $template ) {
if ( is_page( \'portfolio\' ) ) {
$new_template = locate_template( array( \'portfolio-page-template.php\' ) );
if ( !empty( $new_template ) ) {
return $new_template;
}
}
return $template;
}