带病投保、无健康告知保险汇总

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');?>
文章目录
扫码了解详情