如果你知道你想要的深度,你可以add a depth parameter 到$args
$args = array(
\'orderby\' => \'id\',
\'show_count\' => \'0\',
\'child_of\' => $this_category->term_id,
\'use_desc_for_title\' => \'0\',
\'taxonomy\' => \'product_cat\',
\'hide_empty\' => \'0\',
\'child_of\' => $this_category->term_id,
\'depth\' => 2
);
wp_list_categories($args);
如果这个数字不是你想要的,那就试试看。
不过,这并不能为您提供“除最后一级之外的所有”功能。它可以让你深入到一定数量的类别中。如果你想要“除了最后一关以外的所有关卡”,我想你可能需要定制一个步行器。