0

使用 cat id 如何检查该类别中有多少帖子可用,如果帖子不可用则返回 0。

4

2 回答 2

1

使用get_term_by()

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

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

于 2012-11-05T07:00:47.147 回答
0

it may help you check it..

<?php
$postsInCat = get_term_by($field, $value, $taxonomy, $output, $filter );
$postsInCat = $postsInCat->count;
echo $postsInCat;
?>
于 2012-11-05T06:52:09.123 回答