【发布时间】:2015-08-21 16:03:09
【问题描述】:
在我的主页上,我想展示每个类别有多少帖子。所以我使用 get_categories->count 。但我有一个新闻自定义帖子类型。每个新闻项目都与一个类别相关联。那么如何从计数中排除自定义帖子类型?
这是我的代码:
$args = array(
'type' => 'post',
'child_of' => 0,
'parent' => '',
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 0,
'hierarchical' => 1,
'exclude' => array(1,8),
'include' => '',
'number' => '',
'taxonomy' => array('category'),
'pad_counts' => true
);
$categories = get_categories( $args );
然后我在循环中使用:echo $category->count
【问题讨论】: