“child\\u of”参数允许您从父类别中选择子类别,并且可以获取当前分类id作为值传递:
<?php
$category_id = get_queried_object_id();
$args = array(
\'hide_empty\'=>1,
\'depth\'=>1,
\'hierarchical\'=> 0,
\'show_count\'=> 1,
\'taxonomy\'=> \'portfolio-types\',
\'child_of\' => $category_id
);
?>
<ul>
<?php wp_dropdown_categories( $args ); ?>
</ul>
因此,在上面的示例中,只会显示当前类别ID的公文包类型的子类别。
请注意,只有在分类法归档页面中,此代码才能工作,我认为这正是您想要做的。