[HELP]Need Plugin that show my twitter followers ONLY!

Discussion in 'WordPress' started by Ralarash, May 31, 2010.

  1. #1
    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
     
    Ralarash, May 31, 2010 IP
  2. roopajyothi

    roopajyothi Active Member

    Messages:
    1,302
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    80
    #2
    Tweaking WP Pluign is easy my Friend!
    You can easily Tweak ZSha's Plugin
     
    roopajyothi, May 31, 2010 IP
  3. Ralarash

    Ralarash Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Sorry, but I didn't get what you mean. Can you explain it more detail?
     
    Ralarash, Jun 1, 2010 IP
  4. Boogy

    Boogy Active Member

    Messages:
    36
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    73
    #4
    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
     
    Last edited: Jun 1, 2010
    Boogy, Jun 1, 2010 IP
  5. hmansfield

    hmansfield Guest

    Messages:
    7,904
    Likes Received:
    298
    Best Answers:
    0
    Trophy Points:
    280