Get all categories 时间:2014-05-21 作者:Alexandre Maeda 我正在尝试为我的自定义帖子类型创建一个所有类别的列表。对于每个类别,我想创建一个类别名称链接。有谁能在这方面帮助我吗? 2 个回复 SO网友:TheDeadMedic 您可以使用wp_list_categories 带有taxonomy参数的函数product_cat:<ul class="categories"> <?php wp_list_categories( \'taxonomy=product_cat&title_li=\' ) ?> </ul> SO网友:Alexandre Maeda 谢谢@TheDeadMedic,但我只想知道类别的名称。$terms = get_terms( \'product_cat\', \'orderby=count&hide_empty=0\' ); foreach ($terms as $term) { echo $term->name . \'<br />\'; } 我用了get_terms() 结束 文章导航