按子类别组织WordPress类别存档列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按子类别组织WordPress类别存档列表相关的知识,希望对你有一定的参考价值。

This code replaces a normal category template. It sorts all posts by their category/subcategory instead of bunching them all together and ordering them by date. A bit complicated to explain in a box this size... Check the link for a run through!
  1. <?php $categories = get_categories("child_of=17"); foreach ($categories as $cat) { ?>
  2. <div class="genre_subcat">
  3. <?php query_posts("cat=$cat->cat_ID&showposts=-1&order=ASC&orderby=name"); ?>
  4. <h2><?php single_cat_title(); ?></h2>
  5. <small><?php echo category_description($cat->cat_ID); ?></small>
  6. <?php while (have_posts()) : the_post(); ?>
  7. <div class="post">
  8. <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to
  9. <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
  10. <p class="postdate"><?php the_time('F jS, Y') ?></p>
  11. <?php the_content(); ?>
  12. <p class="postmetadata">Posted in <?php the_category(', ') ?> |
  13. <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></p>
  14. </div>
  15. <?php endwhile; ?>
  16. </div>
  17. <?php }?>

以上是关于按子类别组织WordPress类别存档列表的主要内容,如果未能解决你的问题,请参考以下文章

从类别下拉列表中选择后,wordpress 更改类别表示

用于 WordPress 的 PHP 片段,用于获取所有产品子类别

填充不包括某些帖子类别的自定义 WordPress 帖子存档

突出显示存档中的类别 - WordPress

输出 WordPress 类别描述

Wordpress - 在类别存档中使用 wp_query - 如何显示适当的类别?