Wordpress获取当前分类的子分类
Wordpress获取当前分类的子分类,需要两段代码:
Function代码
//获取当前分类ID,by minirizhi.com
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_cats('child_of=' . get_category_root_id($cat) . '&depth=1&hide_empty=0&hierarchical=1&optioncount=0');?>
文章目录
- 上一篇: 可道云KodExplorer云盘搭建管理工具
- 下一篇: Wordpress代码禁止搜索敏感词汇