Wordpress - taxonomy dropdown is not working with hierarchical
问题 Any hope to make this Taxonomy dropdown to work with hierarchical. I added 'hierarchical' => 1 but it seems doesn't work for me! <?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 '<