此代码检查您是否在类别页面上,如果是,则列出当前类别的所有子类别。
if (is_category()) {
$this_category = get_category($cat);
if (get_category_children($this_category->cat_ID) != "") {
wp_list_categories(\'orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of=\'.$this_category->cat_ID);
}
}