尝试使用child_of
第二次见面时,see the documentation.
的子项
(整数)获取此项的所有后代。默认值为0。注意:的child\\u和parent之间的区别在于parent only gets direct children 父项(即:1级下降),child_of gets all descendants (尽可能多的级别)
因此,在您的情况下,您的第二个foreach将如下所示:
<?php foreach( get_terms( \'wpsc_product_category\', array( \'hide_empty\' => false, \'child_of\' => $parent_term->term_id ) ) as $child_term ) { ?>
您可以使用返回值
parent
在条件语句中检测术语的“级别”。当然,你也可以用一个foreach来实现这一点。