【发布时间】:2018-05-21 18:54:09
【问题描述】:
我想根据特定的自定义帖子类型显示自定义分类的计数。目前,我使用get_terms 列出分类法的所有术语。
分类被多个帖子类型使用。因此,计数器会显示每个帖子类型的分类法的所有使用情况。
有没有办法限制单个帖子类型的计数?
这是我的实际代码:
get_terms(array(
'taxonomy' => 'tax',
'hide_empty' => true,
'orderby' => 'count',
'order' => 'DESC',
'number' => '10',
));
在foreach 中,我使用term->count 来显示使用计数器。
【问题讨论】:
标签: php wordpress custom-post-type custom-taxonomy