updated   : May 15, 2012
we now have 588 snippets
By : , on November 06, 2010 11:00 pm

Number of posts in a category

wordpress snippet

Adding this PHP code to your wordpress theme will display the total number of posts within the specified category.

snippet :  PHPcopy
<?php
    $chosen_id = 5; // category number
    $thisCat = get_category($chosen_id);
    echo $thisCat->count;
?>
  • Anonymous

    Simple and sweet

    • http://wpsnipp.com Kevin Chard

      Glad this helps! enjoy…