仅显示那些有帖子的自定义类别

时间:2017-03-24 16:15:14

标签: wordpress categories custom-taxonomy

我创建了自定义分类“market_support_category”。 这个分类有多个类别。下面是我的代码。

<select class="form-control" name="category">
  <?php echo $tax_terms = get_terms('market_support_category', 
   array('hide_empty' => false)); 
   foreach($tax_terms as $term_single)
   {      
      echo '<option value="'.$term_single->slug.'">'.$term_single->name.'</option>';
    }  ?>
</select>

但上面的代码显示所有类别。但我想要那些有帖子的类别。 先谢谢

1 个答案:

答案 0 :(得分:1)

您不小心编码:

array('hide_empty' => false));

......你需要:

array('hide_empty' => true));

:)