web analytics

How to Display RSS Counter in WordPress blog

Are you boring with those RSS chicklets, I have seen those on many websites and they looks ugly, no matter how you change its color to make it beautiful but it remains ugly.
Here today I will show you how to make RSS counter, you can use it your own way, display it anywhere you want in your WordPress blog. You can style it and make it beautiful.

Create a new text file and save it in php format and name it feed and then paste the following code in the file and save it. So it will be feed.php

<?php
//get cool feedburner count
$whaturl="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=Feed Here";

//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

echo $fb;

?>

After pasting these lines to your file we have to add Feedburner user name, so replace the Feed Here with your Feedburner user name on the following line

//get cool feedburner count
$whaturl="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=Feed Here";

Then sim­ply add this line of code wher­ever you want the counter to dis­play:

<?php include("feed.php"); ?>

Save your feed.php file to your theme files where you have hosted the blog.

Join our readers and get the latest posts delivered straight to your inbox.
Enter you email address below:


Related Posts

tabbed

Excellent Collection of CSS Based Button, Menus and Navigation Tutorials

Wordpress Tutorials

Essential WordPress Tutorials for Beginner and Advance Developers

date

Display dates as “time ago” in WordPress

Using the Dribbble API with PHP

10+ PHP Tutorials With Useful Techniques