0

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

4

1 回答 1

2

试试这个

while ( have_posts() ) : the_post();
echo '<li>';
the_content();
echo '</li>';
endwhile;

请参阅循环运行以供参考

于 2013-06-17T14:32:37.090 回答