You misunderstand what page_template
does. 它不会创建一个新模板,您将在某个地方“显示”并可以使用它。它取代了page.php
主题提供的模板。
我想你想要的是template_redirect
:
function custom_page_template( $page_template ) {
if (is_home()) {
get_header();
echo \'do stuff\';
get_footer();
}
}
add_filter( \'template_redirect\', \'custom_page_template\' );
或
template_include
:
function custom_page_template( $page_template ) {
if (is_home()) {
$page_template = plugin_dir_path( __FILE__ ) . \'custom-page-template.php\';
return $page_template;
}
}
add_filter( \'template_include\', \'custom_page_template\' );