我想查询特定类别中的帖子并在我的 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 不显示整个帖子,而是只显示我帖子的标题。我该怎么做才能显示我帖子的内容而不是标题?