我试图了解如何使用自定义模板文件,在本例中,只是列出所有帖子。根据我的研究和对此帖子的初步回复,代码如下所示:
<?php
/**
* Template Name: Basic Test
*/
get_header();
if ( have_posts() ) :
while ( have_posts() ) : the_content();
the_title();
endwhile;
else :
_e( \'Sorry, no posts matched your criteria.\', \'textdomain\' );
endif;
get_sidebar();
get_footer();
?>
当我创建使用此模板文件的新页面时,该页面将显示页眉、页脚、侧栏、页面标题等。我想我错过了什么,但我不知道是什么。既不显示POST,也不显示错误消息。