Wordpress如何查看特定类别中有多少帖子?

时间:2012-11-05 06:49:48

标签: php wordpress

使用cat id如何查看此类别中可用的帖子数量,如果帖子不可用则返回0。

2 个答案:

答案 0 :(得分:1)

使用get_term_by()

$result = get_term_by( 'id', 0, 'category' );
echo count( $result );

0替换为您所需的类别ID。

答案 1 :(得分:0)

它可以帮助你检查..

<?php
$postsInCat = get_term_by($field, $value, $taxonomy, $output, $filter );
$postsInCat = $postsInCat->count;
echo $postsInCat;
?>