X

Display total number of posts in category, WordPress

Add below code to your WordPress template and it will show the total number of posts within the specified category.

 
<?php
    $cat_id = 1; // category number
    $total_posts = get_category($cat_id);
    echo $total_posts->count;
?>