我想查询特定catergory中的帖子,并在我的Wordpress开始页面上显示整个帖子。我已经用这段代码尝试过了:
<?php
$args = array(
'cat' => 3,
'order' => 'ASC'
);
query_posts( $args );
while ( have_posts() ) : the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
wp_reset_query();
?>
而不是显示整个帖子,wordpress只显示我的帖子的标题。 我该怎么做才能显示帖子的内容而不是标题?
答案 0 :(得分:2)
试试这个
while ( have_posts() ) : the_post();
echo '<li>';
the_content();
echo '</li>';
endwhile;
请参阅The Loop in Action以获取参考资料