FeedBurner is easy method to display our total reader. And using a little PHP code we can display our total FeedBurner Reader in Text in WordPress is easily. To implemented this code is easy, all need to do write down PHP FeedBurner Counter below in our themes files, example in sidebar.php, header.php or footer.php. Let’s get started
<?php
$url = file_get_contents('https://feedburner.google.com/api/awareness/1.0/Get
FeedData?uri=YOUR FEED ADDRESS');
$begin = 'circulation="'; $end = '"';
$page = $url;
$parts = explode($begin,$page);
$page = $parts[1];
$parts = explode($end,$page);
$fbcount = $parts[0];
if($fbcount == '') { $fbcount = '0'; }
echo '<div class="subscribe"> '.$fbcount.' Subscribers</div>';
?>
Please note you need replace YOUR FEED ADDRESS with your Feeds, Example our FeedBurner Address is “http://feeds.feedburner.com/WPTricks” and test it out…
You can tweak this code by adding some style using CSS, use your creativity to do it, Our hope our tutorial to display total feedburner reader in text or display feedburner counter as text in WordPress worked on you this code original source by Webam.ag with a little bit tweak



Pingback: How To Display Twitter counter in Text # WordPress Tricks & Tips
Thanks for the help.
thanks friend
cool! thx for sharing
Hi
I tried the script but is give me an error.
Thanks for Sharing
-Imran
Thanks for this info. I am having a hardtime with my feedburner counter.