Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想要:Sub-1.1、Sub-1.2 和 Sub-2.1
猫 1
子 1.1
子 1.2
Sub-1.2.1
猫 2
子 2.1
我不想要 cat 1、cat2 和 Sub-1.2.1
谢谢你。迪内什。
你不能在一个电话中做到这一点。您可以使用以下逻辑
您可以使用获取所有父类别
$parent_cats = get_categories('parent=0');
然后循环 $parent_cats 列表并使用以下内容获取它的直接孩子
$child_cats = get_categories('child_of=' . $parent_cats[$i] . '&parent=' . $parent_cats[$i]);