Display Your Feedburner Counter as Text
Looking for an amazing yet affordable theme for your site? Join Elegant Themes for the all-inclusive price of $39, and you're only paying 50 cents per theme!
Are you getting tired of all those boring, run-of-the-mill Feedburner chicklets? I know that I am.
I love visiting professional blogs that have taken the time to integrate their number of Feedburner subscribers into their template in a way that is both unique and visually appealing… like this site.
A couple of weeks ago, I took the time to explain how to Display Your Twitter Followers as Text. As a result of that article I received a lot of requests to explain how to do the same thing with Feedburner subscriber counts.
Step 1 – Get The Number from Feedburner
In this first step, you are going to place the code into your site that is going to contact feedburner and get the number. It will then store it in a variable that we will display in the second step.
To begin just copy-and-paste the following code into your theme somewhere.
Be sure to replace ‘feedburner-id’ with your actual feedburner id.
//get cool feedburner count $whaturl="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=feedburner-id"; //Initialize the Curl session $ch = curl_init(); //Set curl to return the data instead of printing it to the browser. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set the URL curl_setopt($ch, CURLOPT_URL, $whaturl); //Execute the fetch $data = curl_exec($ch); //Close the connection curl_close($ch); $xml = new SimpleXMLElement($data); $fb = $xml->feed->entry['circulation']; //end get cool feedburner count
Step 2 – Display The Count In Your Theme
To display the number that we have stored in the variable just paste the following code into your theme in the location where you want to display the feed count.
echo $fb;
Using WordPress? Here’s the Quick and Easy.
First, install Feedburner Circulation plugin.
Second, paste the following code into your blog’s theme wherever you want it to display.
<?php feedburner_circulation_text('feed_id'); ?>
That’s it. It might look complicated, but it’s not. Just read it over slowly and let me know if you have any questions.

Eric B. said:
Thanks for the tip. I don’t really like those little feedburner chicklet thingies. They’re like the hit counters of modern web design
I’ll remember this if I decide to publicly display my subscriber count when I get more subscribers (I currently have about 30 something.)
Sat Chen said:
Yea it certainly is a good idea to hide your feedburner subscriber until you get close to hundred. Nicholas when did you start showing your subscribers
Nicholas Z. Cardot said:
Sat Chen –> I agree that it is good to wait but I didn’t wait. I put my out there right away but that is only because I was very confident that it would grow very quickly. I’m really all about being transparent with people. When I started 3 months ago, it didn’t matter to me if everyone knew that this blog was brand new. Now I still work to let people know my subscriber counts, my income, my traffic levels and everything else.
Nicholas Z. Cardot said:
Eric B. –> Good. And remember that you can make your own chicklet by using CSS and puting an image of your own choosing in the background and placing the text over it. I’ve seen that come out in a very impressive way.
Arisu said:
Eric B. >>
I now that no one wants to show their stats unless they feel there is something to show, something to be proud about.
But 30 subscribers are something to be proud of! Don´t look at it as a number, and don´t compare it with other peoples blogs – 30 people think your blog is so good that they don´t want to miss a post.
Also, I think that even one suscriber is good enough to encourage other people to suscribe. No one wants to feel like they´re the only one -but to join to a group of suscribers- even a little one, gives you that feeling of fellowship.
Seth W said:
I think you are exactly right… Once you get a couple put them up and show everyone that people enjoy your blog. Especially if no one is currently commenting on your blog this is a good way to show that at least your blog does get visitors!
King Sidharth said:
Good point man! Even if there are no comments, people know that our blog is useful!
Nicholas Z. Cardot said:
Seth W –> I agree that 30 is plenty to show off.
Nicholas Z. Cardot said:
Arisu –> You make a good case. Besides isn’t every single person important?
Arisu said:
Nick>>
I definitely think that every person counts, and even one loyal reader is a reason to keep improving and do your best.
It´s thanks to those first readers that you can grow up as a blogger and be more appealing to new readers.
Nicholas Z. Cardot said:
Arisu –> Sometimes that first reader is the one that’s really stepping out on faith and believing in you before anyone else does.
Arisu said:
Nick>>
Yeah, those first readers are real treasures and you should make them feel important -those are the ones helping you to grow and the ones that you should improve for.
Nicholas Z. Cardot said:
Arisu –> I agree. No one is unimportant.
Ron Boracay said:
30 and above figures are good start. It can be shown and you will see people jumping on the subscribers club of your blog, but, with less than 10? hmm. Much better to hide it for a while.
ZXT said:
30 is definitely okay and I think as long as you go over a single digit then its okay to show the number of your subscribers.
Andrew said:
Wow, 30? I was too embarrassed to show mine until it was 100+. I got tire of the chicklet look and removed it totally though.
I still need to implement the text version.
Rish said:
We are almost the same. I only got about 30 subscribers in my blog. But I understand it since my blog is personal and not an informative one. What can they get in my stories then? Anyway, it is still something that we should be proud of.
Sat Chen said:
I hate those feed burner chicklets. They are so annoying, and over used. Will use this if i do it right.
Nicholas Z. Cardot said:
Sat Chen –> Good. You can make it much nicer with this than you could with a chicklet.
Ron Boracay said:
Neat and pretty easy to use and follow. I retweeted this one.
@Eric B – That is good, I think much better to hide your or our feedburner subscriber count until it reach hundreds.
mukund said:
sounds interestin.. gonna try asap.. tanx for d tip..;)
Nicholas Z. Cardot said:
mukund –> Great. I hope that you make it look great.
Mukund said:
Hey Nicholas!! I want the same tip for blogger platform! A million thanks if you could do that!
Nicholas Z. Cardot said:
Mukund –> Honestly, I don’t know how to do very much on the blogger platform because I haven’t used it in almost 2 years.
Arisu said:
Thanks for the tip! I´ll be using it on my blog
-wich is almost ready for the launch -
I love the plugin version, it´s very easy and if you have a suscribe box on the sidebar you can put it right next to it.
Nicholas Z. Cardot said:
Arisu –> That’s right you definitely can. Hey are you going to send me a screenshot of it and let me have a sneak preview of your site?
Arisu said:
Nick>>
Of course I will!
Actually, I have a little issue with the color scheme – I´m divided between dark chocolate brown (wich I think is yummy and homey) and green shades (fresh and vivid) – I´ll send you both!
Sat Chen said:
I think dark brown color would look better. Did you make the theme yourself? Good luck
Arisu said:
Sat Chen>>
Thanks, I do think it will work out nicely with the brown scheme, but I´m gonna do another try with light brown and green.
And no, I´m going to use Zeke Theme structure and I´ve customized all the graphic look.
Nicholas Z. Cardot said:
Arisu –> I’ll be glad to help you out and I can point you to some great resources for developing your color scheme into something that looks really nice.
Arisu said:
Nick>>
Thanks a lot! Actually, one of the articles from other blogs featured in your sidebar helped me out in finding the inspiration for the colors. I´ll send you the previews this monday!!
Nicholas Z. Cardot said:
Arisu –> Great! I’m looking forward to that.
ZXT said:
I might use this one. Thanks for another great tip Nick.
Seth W said:
I have never liked the chicklets look, just there functionality… I like the text version though and we employ it over on our blog.
Nicholas Z. Cardot said:
Seth W –> It’s so much easier to blend text into a nice design than to make the chicklets look nice.
Chris Cline said:
Thanks for the tip I will have to try it out…
Nicholas Z. Cardot said:
Chris Cline –> Great and you’re welcome. Have fun with it.
Klaus @ TechPatio said:
That’s a GREAT tip for those who does not want to use the feedburner buttons (or chicklets, I think they’re called?). I don’t mind it at this time, since I don’t have such a fancy design as you do, where the button wouldn’t look nice
By the way, how did you integrate your “subscription manager”-page into your design? Usually when you get to the page to unsubscribe from comments, it’s just a blank page with text, but yours are inside the site design, I’d love to know how to do that.
Thanks
Nicholas Z. Cardot said:
Klaus @ TechPatio –> It took me hours to integrate it and it involved a lot of extremely advanced code editing across several files. It was hard and I don’t even remember how to backtrace every step that I took. The truth is that the creators of that module need to improve the integration features.
Sat Chen said:
Why does it give me this error thing sometimes when I try to comment?
http://tinypic.com/view.php?pic=28as1fc&s=3
Nicholas Z. Cardot said:
Sat Chen –> Thanks for the screen shot. I just changed some code so hopefully it will be fixed now. Keep me up to date if you continue to see it.
Bruce Teague said:
Thanks, someday when I get more subscribers I’ll add the count and I’ll be glad not to have to show an ugly chicklet.
Nicholas Z. Cardot said:
Bruce Teague –> Good. Make it look great!
Andrew said:
Thanks for this one Nick. I’ve been looking around for an easy solution for a little while now.
Now how to do the same thing for a twitter follower count and for aweber subscriber count?
Nicholas Z. Cardot said:
Andrew –> I put up another article for the Twitter follower count about a week ago.
Mezanul said:
Thanks for the tip!
I never liked the feedburner chiklet and I know if I had used it in my site neither will my readers would have liked it.
Using your tip will definitely help a lot in customizing the look of the feedburner subscriber count easily.
Nicholas Z. Cardot said:
Mezanul –> Good! It’s much better to display it like this. I think you’ll like it a lot.
akira07 said:
Ah well i think to use Feedburner chicklets is a choice of the blog owner. As for me, i prefer to put it jut like simple text as you do in this blog. Keep it like this.
Nicholas Z. Cardot said:
akira07 –> It’s definitely a matter of preference but I like to spread my opinion of style and design throughout the web.
akira07 said:
Anyway i think this technique also have a benefit. You’ll have more free space in your blog to be filled with for example : advertising.
Ron Boracay said:
Yet, you think again for monetizing. Hehe. Anyway, yes, its possible, but the true point here is, to show your visitor that “hey, I have a big number of readers, subscribe now and be one of them”.
liliansi said:
Oh! Simple solution for WordPress
Thanks! Very very nice graphic your blog…and very good content! Bye
Ron Boracay said:
Thanks for stopping by here liliansi. Hope to see you more often here at Nick’s blog!
Rish said:
Cool tutorial. I do not like those chicklets as well. Others may take them as clickable buttons other than subscribers’ count. They are also too tiny and difficult to read especially when the colors are mismatched.
Robomaster said:
True…they’re way too small. RSS buttons should ALWAYS be big.
My Latest Blog Post: CCleaner: The Complete Review
Nicholas Cardot said:
Robomaster –> If you want subscribers, then you need to put it out there so that people can see it!
Robomaster said:
Great tip! I think it’s usually better to not ‘show off’ your subscribers unless you have more than 100.
My Latest Blog Post: CCleaner: The Complete Review
Nicholas Cardot said:
Robomaster –> On one hand that’s true, but on the other hand you don’t ever go wrong by being open, honest and transparent with the followers that you do have.
Robomaster said:
True – after reading some of the discussion of the other commenters, I think I’ll show off my feed count no matter how many subscribers I have.
My Latest Blog Post: Chrome OS: Update from Google
Nicholas Cardot said:
Robomaster –> Once you have that very first subscriber, I think that you should show it off. It let’s others know that someone else enjoys the content enough to subscribe to it.
Robomaster said:
This was just what I was lookin’ for. Thanks Nick!
Nicholas Cardot said:
Robomaster –> You’re welcome. I hope that it helps.
Jennae @ Green Your Decor said:
I’m trying to use this at Green Your Decor (the link attached to my name) and I keep getting this error:
Fatal error: Cannot instantiate non-existent class: simplexmlelement in /home/.bafflers/jennae/greenyourdecor.com/wp-content/plugins/feedburner-circulation/feedburner-circulation.php on line 80
Any idea what’s causing it?
My Latest Blog Post: Get in the Mood to Create: Daisy Janie Organic Fabrics
Ellen said:
I love blogs that use feedburner subscriptions- it gives a brief snippet of what is there so you can visit at your leisure. No clue they were called chicklets -getting an education here.
I have been asked to participate in a blog (writing) but am up in the air about it.
奇闻怪事 said:
Thanks for the information, this is very useful !
My Latest Blog Post: ?????????????
Tomas J. said:
Where exactly can i get the feedburner id?
Tomas J. recently posted..Genericidad en C Ejemplos parte I
Udegbunam Chukwudi said:
It doesn’t seem to work any longer

Udegbunam Chukwudi recently posted..How To Install WordPress In A Subdomain Via CPanel
Vic said:
Thanks Nicholas, I really observe that top bloggers display their counters in the different way and not in the boring way as seen on default counters. Your post makes new bloggers classy bloggers. You help us a lot.
Arham Sukardi said:
Very coool, I want to try it..
thanks