使用 cat id 如何检查该类别中有多少帖子可用,如果帖子不可用则返回 0。
问问题
105 次
2 回答
1
$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 回答