Hello,
Is there a way or addon to show how many post all together in the blog and display the amount on a page??
Thanks
Hello,
Is there a way or addon to show how many post all together in the blog and display the amount on a page??
Thanks
Manual way:
<?php
echo $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish'");
?>
Plugin way:
Hi kafkaesqui.. what about Tag archieve?
never mind I found it here
solved by you too..
You ROCK!
How about displaying the total number of posts the manual way, but with excluding certain categories?
This topic has been closed to new replies.