Displaying Blogger Total Post and Total Comment Count
Displaying Blogger Total Post and Total Comment Count
Hello friends, in this article I will explain how you can display your blog's statistics on your Blogger site and how you can embed the total number of posts and total comments to your blog using these statistics.
The only thing you need to know is JavaScript
Displaying the total number of posts
<script>
function numberOfPosts(json) {
document.write('Total Posts : <b>' + json.feed.openSearch$totalResults.$t + '</b><br>');
}
</script><font color="black">
<span style="color: black;"><script src="https://urhoba.blogspot.com/feeds/posts/default?alt=json-in-script&callback=numberOfPosts"></script>
</span></font>
Displaying the total number of comments
<script style="text/javascript">
function numberOfComments(json) {
document.write('Total Comments : <b>' + json.feed.openSearch$totalResults.$t + '</b><br>');
}
</script>
<font color="black">
<script src="https://urhoba.blogspot.com/feeds/comments/default?alt=json-in-script&callback=numberOfComments"></script></font>


Yorum Gönder