【发布时间】:2019-03-20 07:20:25
【问题描述】:
任何希望使此分类法下拉列表与分层结构一起使用。
我添加了'hierarchical' => 1,但它似乎对我不起作用!
<?php
if( $terms = get_terms([ 'taxonomy' => 'category', 'hierarchical' => 1, 'hide_empty' => false, 'child_of' => 233 ]) ) :
echo '<select name="categoryfilter4"><option>Downloads...</option>';
foreach ( $terms as $term ) :
echo '<option value="' . $term->term_id . '">' . $term->name . '</option>'; // ID of the category as the value of an option
endforeach;
echo '</select>';
endif;
?>
【问题讨论】:
-
谢谢我删除了它,知道如何让它分层吗?
标签: wordpress dropdown taxonomy hierarchical