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 Twitter counter in Text

Update: Better Code Display Twitter Counter Text using WordPress Api Display Twitter Counter in Text is easily in WordPress with PHP code, all need to do just write down some PHP Script in our wordpress theme, we can write it … Read More

How To Display Total Retweets in Text without Plugin

Twitter become more popular, now every people and website have twitter account. Using twitter there are unlimited abilites, we can share our favorite post, Retweets others tweets and many more. Today WordPress tutorial will share how to Display Total

Tricks: Display Total Twitter Followers as Text on WordPress

Everybody blogging everybody using Twitter for Microbloging tools. On this tips, I will show you how to display your total twitter followers on your sidebar or whatever and displaying as text. All need to do is add little bit code … Read More

How To Display External RSS Feeds

On our recent post, we have write about WordPress Feed Tricks, Right now we will do something else. Sometime we have another useful resource about our blog, some of them really interesting and we need to put the content on … Read More

The Better Way Display Twitter Followers in Text

There are so many ways to Display Twitter Followers in Text, the popular way is we can use CURL method, we have writen the tutorial display twitter followers in text using CURL. But this method for some WordPress Developers said … Read More

The Best Way to Insert Custom Content into Feeds

My Another Favorite featured in WordPress is easy to tweak it out. And WordPress good support on Feed. Sometime we need to insert custom content into our WordPress Feeds right? On this post I will show you how to Insert … Read More

How To Display Total FeedBurner Reader in Text / WordPress 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. read more

Source: http://wptricks.net/how-to-display-total-feedburner-reader-in-text/

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

Source: http://www.hongkiat.com/blog/how-to-display-feedburner-subscriber-count-in-text/

How To Display Twitter counter in Text / WordPress Tricks & Tips

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 … read more

Source: http://wptricks.net/how-to-display-twitter-counter-in-text/

Feed 101 - FeedBurner Help

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

Source: http://support.google.com/feedburner/bin/answer.py?hl=en&answer=79408

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

Source: http://www.webm.ag/2010/02/05/how-to-display-your-feedburner-count-and-twitter-followers-without-chicklets/


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>