显示类别和关联的帖子列表

时间:2012-10-26 作者:Destructo

我很难找到正确的循环来显示以下内容:

Category Name:

<第1篇第2篇第3篇第4篇第5篇第4篇请查看此类别中的所有帖子-->

有人能帮我找到一个正确的函数或循环吗?

1 个回复
SO网友:Mridul Aggarwal
$categories = get_categories();
foreach($categories as $c) {
    echo \'<h2>\'. $c->name . \'</h2>\';
    $posts = get_posts(array( \'category\' => $c->term_id, \'numberposts\' => 5 ));
    foreach($posts as $post) {
        echo $post->post_title;
    }
    ?>
    <a href="<?php echo get_category_link($c->term_id);?>">
        View all posts in <?php echo $c->name;?>
    </a>
    <?php
}
结束