This script will give you the total number of posts found in your wordpress site.
1 2 3 4 5 6 7 |
<?php $postsInCat = get_term_by('name','CATEGORYNAME','category'); $postsInCat = $postsInCat->count; echo $postsInCat; ?> |
This script will give you the total number of posts found in your wordpress site.
1 2 3 4 5 6 7 |
<?php $postsInCat = get_term_by('name','CATEGORYNAME','category'); $postsInCat = $postsInCat->count; echo $postsInCat; ?> |
© 2022 CODEHAVEN