How To Display Total FeedBurner Reader in Text
February 10th, 2010 By WP Tricks Posted in Tricks
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
How To Display Total FeedBurner Reader in Text On The NET
How To Display Total FeedBurner Reader / Counter in Text ...
Tutorial How To Display Total FeedBurner Reader in Text ... Daily The Best WordPress Tricks and WordPress Tips to make your WordPress nice read more
Source: http://wptricks.net/how-to-display-total-feedburner-reader-in-text/
Text # WordPress Tricks & Tips
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. read more
Source: http://wptricks.net/tag/text/
How To Display Twitter counter in Text # WordPress Tricks & Tips
Total FeedBurner Reader in Text; Tricks: Display Total Twitter Followers as Text on WordPress ... read more. read more. Source: http://wptricks.net/how-to-display-total-feedburner ... read more
Source: http://wptricks.net/how-to-display-twitter-counter-in-text/
Combineing Feedburner Feeds for Reader display
Combineing Feedburner Feeds for Reader display: digitalsquare #:4176342 ... subscribers and then display the total on my site? Similar to the feedburner chicklet (though in plain text). read more
Source: http://www.webmasterworld.com/javascript/4176340.htm
Tricks: Display Total Twitter Followers as Text on WordPress ...
How To Display Twitter counter in Text # WordPress Tricks & Tips. How To Display Twitter counter in Text # WordPress Tricks & Tips. How To Display Total FeedBurner Reader in Text ... read more
Source: http://wptricks.net/tricks-display-total-twitter-followers-as-text-on-wordpress/
Amazing Touch
Thanks for the help.
thanks friend
cool! thx for sharing