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;
?>
this months featured snippets
- Anonymous
- http://wpsnipp.com Kevin Chard





