Here is blogger hack to show the total number of posts on your blog.
It uses JavaScript and JSON (JavaScript Object Notation).
The only thing you need is to change ChangeThisToYourBlog in the code below to the name of your blog.
<script style="text/javascript"> function showpostcount(json) { document.write('Posts on this blog ' + parseInt(json.feed.openSearch$totalResults.$t,10) + '<br>'); } </script> <script src="http://ChangeThisToYourBlog.blogspot.com/feeds/posts/default?alt=json-in-script&callback=showpostcount"></script>
Restored comment
ReplyDeleteby Kobus
Thank, I've been searching for something like this for a while.
Restored comment
ReplyDeleteby Anonymous
Thanks, worked perfectly for me.