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

The Better Way Display Twitter Followers in Text

There are so many ways to Display Twitter Followers in Text, the popular way is we can use CURL method, we have writen the tutorial display twitter followers in text using CURL. But this method for some WordPress Developers said … Read More

How To Display Twitter counter in Text

Update: Better Code Display Twitter Counter Text using WordPress Api Display Twitter Counter in Text is easily in WordPress with PHP code, all need to do just write down some PHP Script in our wordpress theme, we can write it … Read More

How To Display Total FeedBurner Reader in Text

FeedBurner is easy method to display our total reader. And using a little PHP code we can display our total FeedBurner Reader in Text in WordPress is easily. To implemented this code is easy, all need to do write down … Read More

How To Display Total Retweets in Text without Plugin

Twitter become more popular, now every people and website have twitter account. Using twitter there are unlimited abilites, we can share our favorite post, Retweets others tweets and many more. Today WordPress tutorial will share how to Display Total

Display Latest Tweets on Your WordPress

Twitter is phenomenal, almost every internet user have this account, they share everything in Twitter. There are so many method how to display Latest Twitter on your WordPress, we can use display as simple rss, using Twitter Widget or using … Read More

How To Autolink on Twitter Username

Now, everything have twitter account, Website, Actor, Singer, Politican, Webstore, Website, Google, Yahoo and everything on Twitter. We Have too, so follow our Twitter @WPTricksNet For us, Twitter and WordPress is the right couples. So, I will

How To Display Twitter counter in Text / WordPress Tricks & Tips

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

Source: http://wptricks.net/how-to-display-twitter-counter-in-text/

The Better Way Display Twitter Followers in Text / WordPress

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

Source: http://wptricks.net/the-better-way-display-twitter-followers-in-text/

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

Source: http://www.wpbeginner.com/wp-tutorials/displaying-the-total-number-of-twitter-followers-as-text-on-wordpress/

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

Source: http://www.enfew.com/5-ways-to-display-your-twitter-followers-counter-with-jquery/

Stupid Twitter Tricks • Perishable Press

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

Source: http://perishablepress.com/press/2009/10/18/stupid-twitter-tricks/


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>