我有一个页面设置只显示一个类别的帖子,我正在使用php query_posts函数调用。如何制作以便帖子仅作为摘录显示,而不是完整的文章?
这是我在页面上使用的代码:
<?php query_posts('category_name=news&showposts=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php endwhile;?>
*合并WordPresses摘录功能:
<?php query_posts('category_name=news&showposts=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_excerpt(); ?>
<?php endwhile;?>
现在我首先看到我想要的摘录列表,然后重复完整的帖子......
答案 0 :(得分:1)