How To Display Total FeedBurner Reader in Text


Sponsored Links




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

Subscribe to Full RSS Feed

RSS FeedIf you thing this article useful, please consider subscribing to our RSS Feed or e-mail updates and stay updated with us. You can also follow @WPTricksNet on twitter for latest updates.

About WP Tricks

We are WordPress Family, we collected and writed useful tips and tricks for you WordPress. We share it for you...

Related Tips and Trick from Local Data and on The Net

How To Display Total FeedBurner Reader in Text

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

How To Display Feedburner Subscriber Count In Text

want to do is – it gives you total flexibility in terms of design, styling and display. anywhere you want and it’ll display a Feedburner subscriber count in text. Read More

How To Display Your Feedburner Count And Twitter Followers Without

How To Display Total FeedBurner Reader in Text # WordPress Tricks & Tips; How To Display Twitter counter in Text # WordPress Tricks & Tips Read More

Blogger Buster: How to Display Your Feedburner Subscriber Count

The Feedburner FeedCount widget will display the daily average number using their favorite feed reader. Why would you want to display subscribers or the all time total Read More

Feed 101 - FeedBurner Help - Google

A typical interface for a feed reader will display your feeds FeedBurner's services allow publishers who already have RSS feeds can be viewed as plain text files, but Read More


6 Responses to How To Display Total FeedBurner Reader in Text

  1. Pingback: How To Display Twitter counter in Text # WordPress Tricks & Tips

  2. vuhelp says:

    Thanks for the help.

  3. aha says:

    thanks friend

  4. endy says:

    cool! thx for sharing

  5. Hi
    I tried the script but is give me an error.

    Thanks for Sharing
    -Imran

  6. Thanks for this info. I am having a hardtime with my feedburner counter.
    :)

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>