【发布时间】:2009-07-14 06:01:45
【问题描述】:
我是 WordPress 新手。 我将我的网站 (CMS) 划分为树形层次结构中的多个页面。 我正在尝试查看子页面中特定类别的帖子。 但由于某种原因,事件是简单的“循环”:
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
?>
仅显示 (!!) 页面内容,根本不显示任何帖子... 我该怎么做?
10 倍。
【问题讨论】:
标签: wordpress content-management-system wordpress-theming