Monthly Archives: 六月 2011

在WordPress分类目录下显示文章标题

下面的代码可在category.php中发挥作用。这段代码能够给出某分类的分类名称并以列表形式动态生成该分类下属文章。 示例: 分类目录A 子分类下的第四篇文章 子分类下的第三篇文章 子分类下的第二篇文章 子分类下的第一篇文章 <?php //Identify current Post-Category-ID ermitteln foreach((get_the_category()) as $category) { $postcat= $category->cat_ID; $catname =$category->cat_name; } ?> <h2><?php echo $catname; ?></h2> <?php $categories = get_categories(“child_of=$postcat”); foreach ($categories as $cat) { ?> <?php query_posts(“cat=$cat->cat_ID&posts_per_page=-1″); ?> <h3><?php … Continue reading

Posted in 博客 | Leave a comment