wordpress显示给定分类的帖子总数

时间:2014-07-08 11:07:15

标签: wordpress

我想要获取自定义分类的帖子总数。

例如:自定义分类 - 食谱

在食谱中我有税收条款     soups Deserts pastries

以下是screenshot

正如您所看到的,每个词都有关联的帖子,例如:沙漠有3个帖子,糕点有3个帖子,汤有2个帖子

所以当我添加代码

$terms = get_terms($taxname,$taxoargs);
foreach ( $terms as $term ) {
            echo $term->name.$term->count;
}

它运作完美,但我需要的是它应该显示帖子的总数([截图]我们可以看到总帖子是5 2)我想在foreach循环上方显示这个总数。< / p>

因此,简而言之,我想计算与任何一个词相关联的帖子的唯一总数。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

修正后的答案

使用自定义获取帖子应该修复它。

<?php
$args = array(
     'post_type' => 'recipe',
     'slug' => 'soups',
     'post_status' => 'publish'
);
$show_recipes= get_posts( $args );
echo $show_recipes->post_count;
?>

Function Reference