从Wordpress中的任何类别中获取顶级类别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从Wordpress中的任何类别中获取顶级类别相关的知识,希望对你有一定的参考价值。
Just insert any category id into the argument and it will return the top level category object.e.g: print_r( get_top_level_category('INSERT CATEGORY ID HERE') );
function get_top_level_category($id){ $category = get_category($id); $parent_category = NULL; if($category->category_parent != 0){ $parent_category = get_top_level_category($category->category_parent ); } else { $parent_category = get_category($category->cat_ID); } return $parent_category; } }
以上是关于从Wordpress中的任何类别中获取顶级类别的主要内容,如果未能解决你的问题,请参考以下文章
从 WordPress 获取 WooCommerce 产品类别