在我们开发WordPress主题的过程中,如果有一个需求是要获取到父分类的所有子分类,该怎么实现呢?
其实这个需求是很简单的,几行代码就可以搞定。
今天资源宝给大家带来一个小小的wordpress教程,如何在父分类获取所有子分类/二级分类。
首先在function.php里面添加下面的代码。
//父分类获取所有子分类
function get_category_root_id($cat) {
$this_category = get_category($cat); // 取得当前分类
while($this_category->category_parent) // 若当前分类有上级分类时,循环
{
$this_category = get_category($this_category->category_parent); // 将当前分类设为上级分类往上爬
}
return $this_category->term_id; // 返回根分类的id号
}
使用方法
将下面代码放在需要用到子分类的父分类即可
<?php wp_list_categories(
$args = array(
'show_option_all' => '',
'orderby' => 'name',
'use_desc_for_title' => 1,
'child_of' => get_category_root_id($cat),
'optioncount'=>1,
'hierarchical' => 1,
'title_li' => '',
'show_option_none' => __('<span style="padding:0 20px;">抱歉,暂无分类。</span>'),
'depth' => 1,
'taxonomy' => 'category',
'walker' => null
));
?>
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

![[亲测]【TOP主题】WP图片展示类主题带公众号+打赏+相册等功能[WordPress主题]](https://www.cood.top/wp-content/uploads/2025/10/1.png)