我有这个代码可以列出所有子类别和孙子类别,但我只需要子类别,而不需要孙子类别。我怎样才能修复它?
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;
}
你能帮帮我吗,谢谢!