我正在使用自定义count
并对post type : portfolio
进行分类。我需要使用上面的自定义分类法获取特定类别的子类别。
简而言之,我如何获得portfolio_category
的子类别?
答案 0 :(得分:0)
试试这个。
https://codex.wordpress.org/Function_Reference/get_terms
Note: the difference between child_of and parent is that where parent only gets direct children of the parent term (ie: 1 level down), child_of gets all descendants (as many levels as are available)
显然,将 80 更改为您想要获得孩子的类别的ID。
还要从代码中注意到这一点:
{{1}}
所以 parent = 80 将会获得该类别的直接子项,但是如果其中一个子类别拥有自己的孩子,并且您希望将其包括在内,您需要使用 child_of = 80 。