How to show Twitter Followers Count on wordpress widget

We all are having the twitter account. If we want to show Twitter Followers Count on wordpress widget then just use our code.

How to show Twitter Followers Count on wordpress widget

Open your sidebar.php file and just copy paste the following code.

First you would need to create a file twitter.php and paste the following code in there:

01<?php
02 
03//This xml file will return the all user information about from twitter account
04$xml=file_get_contents('http://twitter.com/users/show.xml?screen_name=wordpressapi');
05if (preg_match('/followers_count>(.*)</',$xml,$match)!=0) {
06$twitter_follower_count['count'] = $match[1];
07 
08// this will show the twitter followers count
09echo $twitter_follower_count['count'];
10?>

WordPressapi is my twitter username. So you can change it your username.