2

我有 7 个类别(父母),每个类别都有 15 个子类别。

当我选择某个类别(父)时,我只想显示该特定父类别(父)的子类别(子)。

单击子类别(子类别)后,它应该只显示其帖子。

我有一个fron_page.phpcategory.php

我怎样才能写这个来首先单独显示子类别,然后将该子类别分别发布到用户想要查看的新文件中。

4

2 回答 2

3

此代码应该可以帮助您:

<ul> 
<?php 
 $cats = get_the_category();
 $mycat = $cats->cat_ID;
    wp_list_categories('orderby=id&child_of='.$mycat); 
?>
</ul>

或者

<?php
if (is_category()) {
    $cat = get_query_var('cat');
    $this_category = get_category($cat);
    $this_category = wp_list_categories('hide_empty=0&hierarchical=true&orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID."&echo=0");
    if($this_category !='<li>No categories</li>')
    {
     echo '<ul>'.$this_category.'</ul>'; 
    }
}
?>

请告诉我。

祝你好运!:)

于 2012-06-22T20:12:40.760 回答
0

1) 仅显示子类别:

<?php
    // if the page visitor views is a category page
if (is_category())
{
$cur_cat = get_query_var('cat');
    if ($cur_cat) 
    {
        $new_cats = wp_list_categories('echo=false&child_of=' . $cur_cat . '&depth=1&title_li=&&show_count=1&hide_empty=0');
        echo '<ul>' . $new_cats . '</ul>';
    }
}
?>

2) 显示所有热门类别:

<?php 
wp_list_categories('depth=1&title_li=&exclude=1&show_count=1&hide_empty=0');
?> 

3) 显示所有热门类别 + 子类别,如树形菜单:

Use plugin, called FoCal

4)查看这个话题

http://wpworks.wordpress.com/2011/01/13/displaying-categories-and-subcategories-tree-on-wordpress/
于 2013-03-27T19:09:15.040 回答