PHP 按子类别组织WordPress类别存档列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 按子类别组织WordPress类别存档列表相关的知识,希望对你有一定的参考价值。
<?php $categories = get_categories("child_of=17"); foreach ($categories as $cat) { ?>
<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 }?>
以上是关于PHP 按子类别组织WordPress类别存档列表的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress:仅在类别/存档的第一页上显示
WordPress中单个类别的存档页面
从类别下拉列表中选择后,wordpress 更改类别表示
PHP 将帖子计数移动到WordPress的存档和类别小部件的链接中
突出显示存档中的类别 - WordPress
如何在 Wordpress 的存档页面上显示所有类别的帖子?