Are you interested to show your total number of posts and comments, yes I know that you love this.
example:
Total Posts: 1969
Total Comments: 2455
So lets begin / Follow Steps
1. Log in blogger dashboard
2. Click Design --> Page Element --> Add Gadget
3. Find HTML / JavaScript and click add.
4. Copy code below and paste there.
<script style="text/javascript">
function numberOfPosts(json) {
document.write('Total Posts: <b>' + json.feed.openSearch$totalResults.$t + '</b>
');
}
function numberOfComments(json) {
document.write('Total Comments: <b>' + json.feed.openSearch$totalResults.$t + '</b>
');
}
</script>
<font color="black"><script src="http://deluxetemplates.net/feeds/posts/default?alt=json-in-script&callback=numberOfPosts"></script>
<script src="http://deluxetemplates.net/feeds/comments/default?alt=json-in-script&callback=numberOfComments"></script></font>
5. Replace http://deluxetemplates.net/ with your link.
6. Save it.