$args = array(
'orderby' => 'count',
'order' => 'desc',
'exclude' => array( 1, 2 ) // Исключенные рубрики
);
$top_categories = get_categories( $args );
echo "<ul>";
foreach ( $top_categories as $category ) {
echo '<li><a href="' . get_category_link( $category->term_id ) . '">' . $category->name . ' (' . $category->count . ') </a></li>';
}
echo "</ul>";