WORDPRESS:帖子数量有限的所有类别的列表(在主页上)

时间:2011-10-25 15:25:35

标签: wordpress loops categories

有人可以解决第二个问题:

我想列出我网站主页上的所有类别,每个类别只会显示最后4个帖子,标题和喜欢的图片。

如何做到这一点,请帮助我:)

1 个答案:

答案 0 :(得分:1)

<?php  $cats = get_categories('orderby=count&order=DESC'); 

foreach ($cats as $cat) :

  $args = array(
  'posts_per_page' => 1, // max number of post per category
  'cat' => $cat->term_id
  );
  query_posts($args);
    if (have_posts()) : while (have_posts()) : the_post(); ?>
    <!-- show the ususal stuff in the loop -->
    <?php endwhile; endif; wp_reset_query(); ?>

<?php endforeach; ?>