我试图得到所有有产品的类别,但也得到没有产品的类别。
WordPress版本4.6.1
wp_dropdown_categories(
array(
\'class\' => \'product-category-field\',
\'id\' => \'product-category\',
\'name\' => \'category\',
\'taxonomy\' => \'product_cat\',
\'selected\' => get_query_var(\'product_cat\' ),
\'hierarchical\' => 1,
\'hide_empty\' => 1,
\'value_field\' => \'slug\',
\'show_count\' => 1
)
);
甚至get_terms
正在显示带有以下代码的空类别。<?php $terms = get_terms(\'product_cat\', array( \'parent\' => 0 ));
if( $terms ):
$original_query = $wp_query;
foreach ( $terms as $key => $term ):
?>
<li>
<?php echo $term->name; ?>
<ul>
<?php
$child_terms = get_terms(
\'product_cat\',
array(
\'child_of\' => $term->term_id,
\'hide_empty\' => true
)
);
foreach ( $child_terms as $child_term ) {
$re_child_terms = get_terms(
\'product_cat\',
array(
\'child_of\' => $child_term->term_id,
\'hide_empty\' => true
)
);
if ( ! $re_child_terms ){
?>
<li>
<?php echo $child_term->name; ?>
</li>
<?php
}
}
?>
</ul>
</li>
<?php
endforeach;
$wp_query = null;
$wp_query = $original_query;
?>
</ul>
<?php endif; ?>
注意:在这两种情况下,都不希望显示产品为零的类别。