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('child_of=' . get_category_root_id($cat) . '&depth=1&hide_empty=0&hierarchical=1&optioncount=1&title_li=');?>
这个函数的功能就是在分类页和文章页显示当前分类的子分类(二级分类)。

本文摘自网络,不代表短经典网立场 https://www.duanjingdian.com/239.html

上一篇 2024 年 4 月 21 日
下一篇 2024 年 4 月 22 日

相关推荐