正在查看wp-includes/template-loader.php
… 似乎有一种方法:
if ( $template = apply_filters( \'template_include\', $template ) )
include( $template );
您可以挂接到该过滤器中,处理回调函数中的include并返回
FALSE
.
未测试的示例代码:
add_filter( \'template_include\', function( $template ) {
get_header();
include $template;
get_footer();
return FALSE;
});