WordPress仅在页面上显示一个类别,仅摘录

时间:2012-03-24 22:28:35

标签: php wordpress categories

我有一个页面设置只显示一个类别的帖子,我正在使用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;?>

现在我首先看到我想要的摘录列表,然后重复完整的帖子......

1 个答案:

答案 0 :(得分:1)

相关问题