按子类别组织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!
<div class="genre_subcat"> <?php query_posts("cat=$cat->cat_ID&showposts=-1&order=ASC&orderby=name"); ?> <h2><?php single_cat_title(); ?></h2> <small><?php echo category_description($cat->cat_ID); ?></small> <?php while (have_posts()) : the_post(); ?> <div class="post"> <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> <p class="postdate"><?php the_time('F jS, Y') ?></p> <?php the_content(); ?> <p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></p> </div> <?php endwhile; ?> </div> <?php }?>
以上是关于按子类别组织WordPress类别存档列表的主要内容,如果未能解决你的问题,请参考以下文章
用于 WordPress 的 PHP 片段,用于获取所有产品子类别