Tricks: Display Total Twitter Followers as Text on WordPress


Sponsored Links




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 on your header.php or footer.php or sidebar.php files. and done.

Please remember to make sure that you change WPTricksNet to your username. To Display Total Twitter Followers as Text, you need to write this code below

<?php
$tw = get_option("twitterfollowerscount");
if ($tw['lastcheck'] < ( mktime() – 3600 ) )
{
$xml=file_get_contents('http://twitter.com/users/show.xml?screen_name=WPTricksNet');
if (preg_match('/followers_count>(.*)</',$xml,$match)!=0) {
$tw['count'] = $match[1];
}
$tw['lastcheck'] = mktime();
update_option("twitterfollowerscount",$tw);
}
echo $tw['count'];
?>

Thanks for WP Recipes for share this code, we got this nice tips via WP Beginner

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 / WordPress Tricks & Tips

←How To Display Total FeedBurner Reader in Text How To Display Twitter counter in Text / WordPress Tricks Way Display Twitter Followers in Text # WordPress Tricks Read More

Displaying the Total Number of Twitter Followers as Text on WordPress

show you how you can display the total number of twitter followers as text on your WordPress site. to provide quality tips, tricks, hacks, and other resources for WordPress Read More

8 Ways To Display Your Twitter Followers Counter With jQuery | Web

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 Read More

How To Display Total FeedBurner Reader in Text / WordPress Tricks

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 Read More

Stupid Twitter Tricks : Perishable Press

Display the number of your Twitter followers in plain text via JavaScript Then, to display the total number of Stupid htaccess Tricks; Thoughts on Twitter; WordPress Read More


4 Responses to Tricks: Display Total Twitter Followers as Text on WordPress

  1. adtyan says:

    what a very useful information

  2. aljuk says:

    It’s not working – Parse error: syntax error, unexpected T_STRING…

  3. Pingback: 5 Ways To Display Your Twitter Followers Counter With jQuery

  4. Thank you very much for sharing this awesome trick

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>