我只想列出儿童类别,而不是孙辈

时间:2017-12-29 作者:Ma Tis

我有这个代码可以列出所有子类别和孙子类别,但我只需要子类别,而不需要孙子类别。我怎样才能修复它?

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; 
}
你能帮帮我吗,谢谢!

1 个回复
SO网友:Ma Tis

已经解决了。

<?php wp_list_categories("child_of=&depth=1&hide_empty=0&title_li="); ?>
将上述代码放在“文件”类别中的适当位置。php或归档。php并将“depth=0”修改为“depth=1”。它起作用了。

谢谢大家。

结束