我创建了一个主题,并为该主题创建了一个页面,现在我想将帖子关联到该页面。我读了这篇文章:
http://codex.wordpress.org/Pages
查看“页面和模板示例”一节下的代码:
<div id="content" class="widecolumn">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>"><?php the_title();?></h2>
<div class="entrytext">
<?php the_content(\'<p class="serif">Read the rest of this page »</p>\'); ?>
</div>
</div>
<?php endwhile; endif; ?>
它似乎在拉一些与页面相关的帖子。如何为页面创建帖子?如果不可能,除了将html硬编码到页面中之外,他们在做什么,或者我可以使用什么样的替代品?