Many old bloggers display their total posts and comments just to show how popular their blog is. You can too add this widget to your blog. The widget looks like this:

Total Posts And Comments Displaying total number of posts and comments to blogger

To add this widget follow these simple steps:

1.Go to Layout>Page Elements
2.Then click on Add Gadget

Sidebar add gadget Displaying total number of posts and comments to blogger

3. Then select HTML/JAVASCRIPT

HTML JAVASCRIPT Displaying total number of posts and comments to blogger

4. To this add the following code:

<script type=”text/javascript”>
function TotalPosts(json) {
document.write(‘<b>Total Posts: ‘+json.feed.openSearch$totalResults.$t+’</b>’);
}

function TotalComments(json) {
document.write(‘<b>Total Comments: ‘+json.feed.openSearch$totalResults.$t+’</b>’);
}
</script>

<script src=”/feeds/posts/default?alt=json-in-script&callback=TotalPosts”></script>
<br/>
<script src=”/feeds/comments/default?alt=json-in-script&callback=TotalComments”></script>

5. You can replace the bold part of the code to whatever you like. After editing save the widget and see for yourself.