Njatym Blog

Welcome! Advertised With Us | Contact Us | About Us | Terms Of Service | Privacy Policy | Disclaimer | Instant Ads Placement | Create a post
Stats:
views, 150 posts, 126 Comments
Thursday, April 24, 2025 at 9:30 AM

Follow For More Updates





Translate To Your Language

Blog Code For Total Post, Total Comment

 I will show you how we can print out the total post and comment count of your blog using our blogs feed so first we need to add these two lines of javascript code which asks blogger to return our feed in JSON format which is a set of javascript objects. Don't forget to replace the red code with the URL of your blog

<script src="http://njatym.blogspot.com/feeds/posts/default?alt=json-in-script&callback=numposts"></script>
<script src="http://njatym.blogspot.com/feeds/comments/default?alt=json-in-script&callback=numcomments"></script>

in the code above we have asked blogger to return our JSON feed to two javascript functions named numcomments and numposts so now we will create those two functions to print out the total post and comments count


<script style="text/javascript">function numposts(json) { document.write('This blog has ' + json.feed.openSearch$totalResults.$t + ' posts'); }function numcomments(json) { document.write(' and ' + json.feed.openSearch$totalResults.$t + ' Comments'); }</script>

now if you paste the two sets of code together into an html/javascript widget in the following order


<script style="text/javascript">
function numposts(json) {
document.write('This blog has ' + json.feed.openSearch$totalResults.$t + ' posts');
}
function numcomments(json) {
document.write(' and ' + json.feed.openSearch$totalResults.$t + ' Comments');
}
</script><script src="http://www.lawnydesigns.com/feeds/posts/default?alt=json-in-script&callback=numposts"></script><script src="http://www.lawnydesigns.com/feeds/comments/default?alt=json-in-script&callback=numcomments"></script>
<br/><br/>

and save you should see something like my result below
 <br/><br/>

please click on the follow button above to get more blog code's

Related Posts:

No comments:

Post a Comment

Search



Celebrities (67) Webmasters (19) Education (18) Crime (14) News (13) Business (12) Politics (12) Sports (10) Health (9) Romance (9) Fashion (8) Jobs/Vacancies (8) Music/Radio (8) Pets (8) Properties (8) Religion (8) Travel (8) Phones (4) Career (1) Webmaster (1) Webmastets (1)


Terms Of Service | Privacy Policy | Disclaimer | About Us | Contact Us | Advertised With Us | Designed with by Akahomen Jerry | Share:
Copyright © 2013-2025 Akahomen Jerry All right reserved