看见the Codex. 这个wp_list_categories
允许您设置child_of
和adepth
(在本例1中,我们只想降低一级)。
查看有关其样式的Codex链接;有很多选择。
<?php $term = get_queried_object();
wp_list_categories(array(
\'taxonomy\'=>$term->taxonomy,
\'child_of\'=>(int) $term->term_id,
\'hide_empty\'=>0,
\'depth\'=>1,
)); ?>
我只对内置类别进行了测试,但这也适用于自定义分类法。