Hi there,
i write several posts each day and i want my users to know how many posts are in total. I just want to show something like "10.000 posts and writing more!" something like that... how can i do it?
thanks!
Hi there,
i write several posts each day and i want my users to know how many posts are in total. I just want to show something like "10.000 posts and writing more!" something like that... how can i do it?
thanks!
The following code will display the total number of published posts:
<?php $count_posts = wp_count_posts(); echo $count_posts->publish; ?>
This topic has been closed to new replies.