echo get_category(5)->category_count;
<?php
$term = get_term( 562 );
print_r( $term );
/* Выведет:
WP_Term Object
(
[term_id] => 562
[name] => Записи
[slug] => zapisi
[term_group] => 0
[term_taxonomy_id] => 582
[taxonomy] => my_taxonomy_name
[description] =>
[parent] => 0
[count] => 1
[filter] => raw
)
*/