<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
the_title( \'<h3>\', \'</h3>\' );// puts the title in h3 tags
the_content(); // adds the content
endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
请注意,只要标题函数位于if/while/the\\u post之后和endwhile之前,就可以在需要的地方使用标题函数;这是在不同区域检索标题和内容的方式。我无法对stackexchange的这一部分发表评论,但希望这能有所帮助。