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()

结束

相关推荐

WordPress Get_Categories&列出最近发布的内容缩略图

我正在尝试获取一个页面,列出所有子类别,然后显示它们的名称和该类别中最近帖子的缩略图。这是我得到的以下代码,它似乎从其他不在该类别中的帖子中获取一些缩略图,并重复这些类别。任何帮助都将不胜感激。<?php get_header(); ?> <div id=\"left_full\"> <?php $args = array( \'orderby\' => \'name\',