Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How to Number of posts in a category
- Adding this PHP code to your wordpress theme will display the total number of posts within the specified category.
- <?php
- $chosen_id = 5; // category number
- $thisCat = get_category($chosen_id);
- echo $thisCat->count;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement