标签: php wordpress
使用cat id如何查看此类别中可用的帖子数量,如果帖子不可用则返回0。
答案 0 :(得分:1)
使用get_term_by()
$result = get_term_by( 'id', 0, 'category' ); echo count( $result );
将0替换为您所需的类别ID。
0
答案 1 :(得分:0)
它可以帮助你检查..
<?php $postsInCat = get_term_by($field, $value, $taxonomy, $output, $filter ); $postsInCat = $postsInCat->count; echo $postsInCat; ?>