How to Display Total Number of Posts and Comments


In this post i have given javscript code to print or display the number of posts or comments that you have in your blog. This hack is very easy to implement. See how it looks …



Javascript Code to Display Total Number of Posts :


<script style="text/javascript">
function showpostcount(json) {
    document.write(‘Total Posts : <b>’ + parseInt(json.feed.openSearch$totalResults.$t,10) + ‘</b><br>’);
}
</script><script src="http://www.yourblog.blogspot.com/feeds/posts/default?alt=json-in-script&callback=showpostcount"></script>

Javascript Code to Display Total Number of Comments :


<script style="text/javascript"></script><script style="text/javascript">
function numberOfComments(json) {
document.write(‘Total Comments : <b>’ + json.feed.openSearch$totalResults.$t + ‘</b><br>’);
}
</script><script src="http://www.yourblog.blogspot.com/feeds/comments/default?alt=json-in-script&callback=numberOfComments"></script>

How to Install :

Insallation is very simple. Just copy and paste the above code whereever you want ( in gadget or posts or under footer etc..). Dont forget to change letter in red with your blog url.

If you like this post, don’t forget to subscribe to RSS feed or Email.

Featured Items - Start Your Own Community Website Like Facebook In a Minute

Want to start your own social or community website like Facebook ? Start right away using Buddypress WordPress plugin along with premium Buddypress Themes. No need to setup anything. It works out of box. Install BuddyPress plugin and Premium themes from this list. Your are done!.
FIND OUT MORE

Featured Items - WebHostingPad Starts at only $1.99/Month

WebHostingPad is a Cheap, Easy and Affordable web hosting provider with Free Website Builder and Website Transfer. They are running SPECIAL LIMITED PERIOD OFFER $1.99/month (Regularly $4.95.mo).
FIND OUT MORE

Featured Items - Unlimited Web Hosting from HostGator 25% OFF

HostGator is a one of the most trusted Easy and Affordable Web Hosting Provider next to Inmotion Hosting. LIMITED TIME OFFER! Get 25% OFF using coupon code: BLOGOSYS25
FIND OUT MORE

Featured Items - 200+ Popular HTML Email and Newsletter Templates for Effective Marketing

Do you want to market your products effectively ? Do you want to send newsletter to your customer in the way that you want ? Do you want full control over the email design ? There are 200+ great collection of E-mail and Newsletter HTML templates from Themeforest. Get into site directly and search for the suitable template that boost your sales and conversion rate.
FIND OUT MORE

Featured Items - Recommended WordPress and Web Development Books

Want to learn IN and OUT of web development and become professional web developer? Here are the list of WordPress and Web Development books which i recommend you to start with.
FIND OUT MORE
  • Showbiz Juice

    thanks! I’m using this on my blog. :)