Wordpress How to find out the number of posts added to a given category – WordPress May 2, 2011 Pramod T P Leave a comment <?php $posts = get_posts(array('category' => 5)); // Here 5 is category id echo sizeof($posts); ?>