Anyone, please help me. I need a plugin for my wordpress based blog. I need a plugin that can show the number of my twitter followers ONLY! without the time line. Thanks
where are you displaying this, on the site, or the admin? in anycase..you shouldnt rush to install plugins...they are not perfectly secure or light weight. try this <?php function curl($url) { $ch = curl_init($url); curl_setopt($ch,CURLOPT_RETURNTRANSFER, true); curl_setopt($ch,CURLOPT_HEADER, 0); curl_setopt($ch,CURLOPT_USERAGENT,"www.yoursite.com"); curl_setopt($ch,CURLOPT_TIMEOUT,10); $data = curl_exec($ch); curl_close($ch); return $data; } function GetTwitterFollowerCount($username) { $twitter_followers = curl("http://twitter.com/statuses/user_timeline/".$username.".xml?count=1"); $xml = new SimpleXmlElement($twitter_followers, LIBXML_NOCDATA); return $xml->status->user->followers_count; } echo GetTwitterFollowerCount("YourTwitterUsername"); ?> PHP: you can put it in a class if you want and call it where ever you want