Smashing Magazine - we smash you with the information that will make your life easier. really.

15 Useful Twitter Hacks and Plug-Ins For WordPress

Advertisement

Since its launch in 2006, Twitter has grown to create what most people would call a social media revolution. By the very nature of the short messages it hosts, Twitter is a wonderful marketing and promotion tool that no serious blogger can ignore.

In this article, we have compiled 15 most useful Twitter plug-ins, hacks and tips for WordPress to help you get the most out of Twitter in your WordPress blog.

You may want to take a look at the following related posts:

1. WordPress Hacks For Twitter

WordPress plug-ins are good, but if you have 50 different plug-ins active on your blog, you should obviously expect longer loading times and even some inconvenience. This is why we love hacks! First let’s dive deep into WordPress and see what hacks can do to enhance our blogging experience. In the second part of this article, we will also show you some useful Twitter plug-ins for your WordPress blog.

Automatically create TinyUrls for your blog posts

9 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

Because of the restriction on character numbers in Twitter, you have to use a URL shortener when tweeting URLs. So, to help your readers tweet about your posts, you should definitely provide short URLs for all of your posts.

Here’s how to automate that task:

Open your functions.php file and paste the following code:

function getTinyUrl($url) {
    $tinyurl = file_get_contents("http://tinyurl.com/api-create.php?url=".$url);
    return $tinyurl;
}

Once done, paste this in your single.php file, within the loop:

<?php
$turl = getTinyUrl(get_permalink($post->ID));
echo 'Tiny Url for this post: <a href="'.$turl.'">'.$turl.'</a>'
?>

To see this in action, visit my website, WpVote, and look at any post.

Source: How to: Automatically provide TinyUrls for your WordPress blog posts

Display your latest tweet without a plug-in

8 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

If people like your blog, they would probably also enjoy your tweets. Displaying your latest tweets on your WordPress blog is a good way to gain new subscribers. A plug-in can do that, but for such a simple task, I prefer a hack. This one grabs your latest tweet and displays it on your blog.

This ready-to-use code can be pasted anywhere in your theme files. Just don’t forget to change the value of the $username on line 4. The $prefix and $suffix variable can be used to insert a title, and the div element can be used for further CSS styling.

<?php

// Your twitter username.
$username = "TwitterUsername";

// Prefix - some text you want displayed before your latest tweet.
// (HTML is OK, but be sure to escape quotes with backslashes: for example href=\"link.html\")
$prefix = "<h2>My last Tweet</h2>";

// Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)
$suffix = "";

$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=1";

function parse_feed($feed) {
    $stepOne = explode("<content type=\"html\">", $feed);
    $stepTwo = explode("</content>", $stepOne[1]);
    $tweet = $stepTwo[0];
    $tweet = str_replace("&lt;", "<", $tweet);
    $tweet = str_replace("&gt;", ">", $tweet);
    return $tweet;
}

$twitterFeed = file_get_contents($feed);
echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);
?>

Save the file, and your latest tweet is displayed on your blog. Nice, huh?

Sources:

Display your latest tweet as an image

Because of Twitter’s success, a lot of third-parties have started promoting additional Twitter services. TwitSig is one of them. This website is very ugly but also very cool because it allows you to get an auto-updating image that displays your latest Twitter entry.

While using this image as a signature in forums would be good enough, integrating it in your WordPress blog, under your posts for example, would also be great.

  1. Go to Twitsig.com. You don’t have to register: very nice!
  2. Simply enter your Twitter username in the text field.
  3. And your Twitter image is ready, displaying your latest tweet. The image is automatically updated when you update your Twitter status.
  4. Open any of your WordPress theme files and paste the following code (make sure to replace my username with yours!):
    <a href="http://twitter.com/catswhocode"><img src="http://twitsig.com/catswhocode.jpg"></a>

Create a “Tweet this” button

10 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

Twitter is definitely a great way to gain exposure on the Web. This is why I created a fancy “Send to Twitter” button and implemented it on my blogs (see links at the bottom of the article). Go here if you’d like to see this hack in action.

  1. Open the single.php file in your theme.
  2. Paste the following code where you’d like your Twitter button to appear:
    <a href="http://twitter.com/home?status=Currently reading <?php the_permalink(); ?>" title="Click to send this page to Twitter!" target="_blank"><img src="send-to-twitter.png" alt="" /></a>

Some time ago, in my “Mastering WordPress shortcodes” article here on Smashing Magazine, I showed you how to create a “Send to Twitter” WordPress shortcode. I also wrote an article on Pro Blog Design about creating a “Send to Twitter” WordPress widget. You can read that tutorial here!

Detect a visitor from Twitter

11 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

Visitors coming to my blogs from Twitter now represent something like 10% of all my traffic, which is quite a lot. Because many Twitter users re-tweet blog posts that they like, it may be a very good idea to detect Twitter visitors, welcome them and, of course, remind them that their re-tweets are appreciated.

To do this, open your single.php file and paste these lines where you’d like your “Welcome Twitter user” message to be displayed.

<?php
if (strpos("twitter.com",$_SERVER[HTTP_REFERER])==0) {
    echo "Welcome, Twitter visitor! If you enjoy this post, don't hesitate to retweet!";
}
?>

This code will detect readers coming from Twitter and display the message only to them.

Create a Twitter page on your WordPress blog

We already showed you how to display your latest tweet on your blog, in your sidebar for example. Another good way to introduce readers to your Twitter updates is to create a dedicated page for displaying your tweets, using the powerful “Page template” WordPress option.

To perform this hack, you need to know how to create and use page templates. If you’re not familiar with this, this article will tell you all you need to know.

Here’s the code to create a Twitter page template. Paste it in a new file, name the file something like twitter-page.php, for example, and then add it to your blog.

<?php

/*
Template Name: Twitter page
*/

get_header(); 

include_once(ABSPATH.WPINC.'/rss.php');
wp_rss('http://twitter.com/statuses/user_timeline/15985955.rss', 20); 

get_sidebar();
get_footer();
?>

This code uses the wp_rss() function from WordPress core, which is an RSS reader. In the first argument I pass my Twitter RSS feed, and in the second argument I determine the number of entries to display.

Using Twitter avatars in comments without plug-ins

12 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

I was pretty interested in the Twittar plug-in when it was first released and decided to look at the source to see how it works. Being a die-hard WordPress hack fanatic, I decided to create a hack using the Twittar code.

Follow these simple instructions to use Twitter avatars in your blog comments without a plug-in:

  1. The first thing is to get the functions file here.
  2. Once you have it, unzip the archive and open the twittar.php file. Select all of its contents and paste it in the functions.php file in your theme.
  3. Now, open your comments.php file and find the comments loop. Then, just paste the following line where you’d like the Twitter avatars to be displayed:
    <?php twittar('45', 'default.png', '#e9e9e9', 'twitavatars', 1, 'G'); ?>

Source: How to: Use Twitter avatars in comments

2. WordPress Plug-Ins For Twitter

Twitter Updater
Are you using Twitter to notify readers about your new blog posts, or even old ones that you’ve updated? If so, then Twitter Updated is definitely something to consider. The plug-in automatically sends an update status request to Twitter when you create or modify a post. Text is customizable, and the plug-in provides many options.

Twit this
The Twit This plug-in makes it easy for readers to tweet about your blog posts by creating a “Share on Twitter” link on your blog. When someone clicks on it, your blog post’s URL is automatically sent to Twitter, and the visitor can enters a description before sending the tweet to his or her friends.

2 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

Twit it up
Twit it up is a simple AJAX-powered WordPress plug-in that basically does the same thing as Twit this: allows readers to tweet one of your posts directly from your blog by clicking a simple link.

3 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

Twit-Twoo
Twit-Twoo is a very useful for bloggers because it allows you to tweet friends directly from your WordPress dashboard. Particularly great if you spend a lot of time on your WordPress dashboard!

4 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

Twitter Tools
Twitter Tools, created by Alex King, is one of the most popular Twitter plug-ins for WordPress. It completely integrates Twitter in your WordPress blog, allowing you to archive your tweets, create a blog post from each of your tweets and post tweets from your admin dashboard or sidebar. It also allows you to create a daily digest of tweets; very nice if you tweet a lot!

5 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

Twittar
Twittar was released here on Smashing Magazine back in January. Remember it? This plug-in integrates Twitter avatars in the comment template of your WordPress blog. Definitely a plug-in to consider if you and your readership often use Twitter! And don’t worry if any of your readers don’t use Twitter (yet), Twittar automatically displays gravatars if no Twitter avatar is available.

6 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

Tweetbacks
Since its release only one month ago, the Tweetbacks plug-in has created a mini-revolution in the blogging world. While your WordPress blog can automatically notify you when bloggers discuss your posts on their own blogs, via Trackbacks, it can’t notify you when people discuss your posts on Twitter. That’s why Tweetbacks is so great: it automatically imports tweets about your posts and lets you display them either as comments or separately.

7 in 15 Useful Twitter Hacks and Plug-Ins For WordPress

Related Posts

You may want to take a look at the following related posts:

(al)

This guest post was written by Jean-Baptiste Jung, a 26-year-old blogger from Belgium, who blogs about WordPress at WpRecipes and about everything related to blogging and programming at Cats Who Code. You can stay in touch with Jean by following him on Twitter.

Post Rating
1 Star2 Stars3 Stars4 Stars5 Stars (No votes yet)
Loading ... Loading ...

Tags: , ,

Advertising
  1. 1
    James Cowie
    March 4th, 2009 8:07 am

    Very nice post, thanks alot,

  2. 2
    Evan
    March 4th, 2009 8:08 am

    very useful discussion, thanks for the walkthrough XD

  3. 3
    Genero
    March 4th, 2009 8:08 am

    Excellent article, I have just integrated twitter into my blog but will go back and check these out.

  4. 4
    Jeff
    March 4th, 2009 8:17 am

    Great post. Very helpful as I am new to the twitter world and still figuring everything out. I really like the tweetbacks plugin.

    But, boy some of those logos are horrific!

  5. 5
    Enk.
    March 4th, 2009 8:39 am

    Ahah Cool !.
    Thinking to implement one on my blog.. :P

  6. 6
    DKumar M.
    March 4th, 2009 8:39 am

    Nice Article Jean….!!

  7. 7
    Idealien
    March 4th, 2009 8:50 am

    Nice article – Some useful code snippets for future use. Thx.

    TwitMe is another option for integrating Twitter directly into the dashboard.

  8. 8
    akira
    March 4th, 2009 8:54 am

    Exactly what I was looking for!!! tweeting this! :)

  9. 9
    Chung Bey Luen
    March 4th, 2009 8:56 am

    Nice list. This is what I’m looking for.

  10. 10
    Daniel
    March 4th, 2009 9:03 am

    You missed http://tweetmeme.com/button.php which basically works like digg, but for twitter.

  11. 11
    Jens
    March 4th, 2009 9:13 am

    Tweeting rules! Nice list.

  12. 12
    Zackatoustra
    March 4th, 2009 9:14 am

    Great list!
    I had’nt thought of most of the functionnalities presented here! The web is full of wonderful people!

  13. 13
    Sinoun
    March 4th, 2009 9:14 am

    Was never a huge fan of Twitter… but I think this article has changed my mind. Thanks!

    Sinoun

  14. 14
    Ken the tech
    March 4th, 2009 9:26 am

    Long but interesting article. I’m not a Twitter fan but never know ;)

  15. 15
    Peter Vatistas
    March 4th, 2009 9:27 am

    Thanks a million for the Twitter tips! I’ve tried a few Twitter plugs and ended up creating a separate page and dropping Twitter’s code into it. The tips you provided will allow me to do exactly what I want without having to send users to a secondary page, THANK YOU!!!

    Peter Vatistas

  16. 16
    HeriNXI
    March 4th, 2009 9:29 am

    Go to Twisig.com. You don’t have to register: very nice!

    i think you must correct that text and its link,
    thank for the info :)

  17. 17
    HeriNXI
    March 4th, 2009 9:30 am

    sorry, i mean this line :)
    Go to Twisig.com. You don’t have to register: very nice!

  18. 18
    Keith
    March 4th, 2009 9:38 am

    I use TwitIMG.com for my forum images, just put in your twitter name, up pops an image.

  19. 19
    Maigret
    March 4th, 2009 9:42 am

    Hey Jbj you’re in great shape right now ! Thanks a lot for your Twitter hacks, I’ll try to do these on my blog ! ;)

  20. 20
    Mezanul
    March 4th, 2009 9:43 am

    Thanks, going to implement some at my blog!

  21. 21
    Christophe
    March 4th, 2009 9:55 am

    Very cool list!!

  22. 22
    John Turner
    March 4th, 2009 10:35 am

    Cool, I’ll have to incorporate some of these in my open source Twitter Inspired Wordpress theme:
    Twordder

  23. 23
    HotCouponz
    March 4th, 2009 10:56 am

    Great list thank you.

  24. 24
    Jesse
    March 4th, 2009 11:22 am

    I tried implementing the “Display your latest tweet without a plug-in”, but I keep getting errors. I pasted it on the sidebar.php file if that helps.

    Thanks!

  25. 25
    Wade Jackman
    March 4th, 2009 11:27 am

    Thanks for the great post! Twitter is just taking over now.

  26. 26
    Jen
    March 4th, 2009 12:23 pm

    Cool. I also appreciated the link to WPRecipes and the page creation tutorial.

  27. 27
    crossmage
    March 4th, 2009 2:06 pm

    Good stuff here – i will have to play with some of those hacks.

    i have also been using Twitter tools for well over a year now. It does a lot of great things, though I had to stop the daily digests as it was creating some empty blogging for me when I would tweet regularly but post only once in a while.

    OTOH, it has been interesting to go back and read those same Twitter digest entries from last year.

    Good stuff!
    James

  28. 28
    Kendall
    March 4th, 2009 2:11 pm

    Incredible the amount of PR Twitter’s been getting lately. First, Capitol Hill, then the Daily Show, now Smashing Mag. I am extremely excited to see what the world can do with Twitter technology!

  29. 29
    Jean-Baptiste Jung
    March 4th, 2009 2:22 pm

    Thanks to everyone for the great comments, glad you enjoyed the post!
    Don’t forget to digg it if you like.

  30. 30
    Therese Hansen
    March 4th, 2009 2:57 pm

    There is much communication to gain by integrating twitter with traditional blogs!!

    I’m working on another twitterplugin for wordpress right now – similar to tweetbacks but with a twist :-). I have already made a twitter-plugin for wordpress (CommentTweets) for sending notifications (@replies) to your twitter-account when somebody has continued the conversation on a blog post you have commented on; http://wordpress.org/extend/plugins/commenttweets

  31. 31
    The Virtual Consulting Firm
    March 4th, 2009 3:21 pm

    Great Article, Tips and Tools, Jean-Baptiste! :)

    Thank you for compiling and sharing all of this information with all of us! :)

  32. 32
    Nik
    March 4th, 2009 4:12 pm

    Twitter, the tool for bird brained twits that just *have* to share their vacuity with everyone.

  33. 33
    Jon Bergan
    March 4th, 2009 5:35 pm

    Wow! Thanks for showcasing Twit It Up in your list of Twitter Plugins. Hope you guys like it! Great roundup of hacks/plugins also. Keep up the fantastic work!

    Rgds,
    Jon

  34. 34
    Corrado Coia
    March 4th, 2009 7:02 pm

    Your timing is perfect. I just started looking into how to get these exact Twitter things accomplished this morning.

    Thanks for the great post and great information.

    Cheers,
    @CorradoCoia

  35. 35
    gr8pixel
    March 4th, 2009 8:16 pm

    very impressive! great post… Thanks! :D

  36. 36
    Shahryar
    March 4th, 2009 9:29 pm

    awesome, will be trying this out

  37. 37
    bill
    March 4th, 2009 11:33 pm

    very useful for me, I will use some of the function in my blog.

    thanks

  38. 38
    tony
    March 5th, 2009 12:13 am

    What’s a twitter? o.O

  39. 39
    requirezero
    March 5th, 2009 5:36 am

    twitter for kids

  40. 40
    Denis
    March 5th, 2009 6:44 am

    Try Thread Twitter!

  41. 41
    Trendy Pixels
    March 5th, 2009 7:38 pm

    Wow thanks for these! I love good twitter icons.

  42. 42
    Shantanu Goel
    March 5th, 2009 11:03 pm

    Those are cool hacks. But you do not need to modify your wordpress/theme files to incorporate them or install a bucket full of plugins. You just need one plugin that can add all these hacks (and whatever else you want) automatically to your posts WordPress Prefix Suffix

  43. 43
    robin @ elements, inc.
    March 6th, 2009 9:38 am

    thanks a bunch for these cool plug ins!

  44. 44
    Chris Robinson
    March 6th, 2009 10:36 am

    dig the “Display your latest tweet without a plug-in” thanks!

  45. 45
    Rogério Oliveira
    March 6th, 2009 10:45 am

    fodastico

  46. 46
    Adi
    March 6th, 2009 2:37 pm

    wow, great!
    change name to “twitter magazine”
    : /

  47. 47
    Verne
    March 8th, 2009 1:45 am

    This is friggin’ awesome. Thanks SM!

  48. 48
    pritika
    March 8th, 2009 9:50 pm

    hey, nice content

  49. 49
    Nico
    March 9th, 2009 5:47 am

    Nice, thank you!

  50. 50
    Maria Keckler
    March 12th, 2009 3:10 pm

    A question… are these tips available for Wordpress.com hosted blogs also? I haven’t yet gotten into customizing CSS, are these some of the things I can do once I dare dive in? ;)

  51. 51
    hector
    March 13th, 2009 7:51 am

    Question: how can I insert one of this Twitter icons in the sidebar of my blog? http://www.inspiredm.com/2009/03/02/twitter-art-the-most-inspirational-twitter-graphics/

  52. 52
    Jeremy
    March 13th, 2009 7:57 pm

    wow thanks for the list!
    http://www.bathrobewarrior.com

  53. 53
    jph
    March 14th, 2009 12:33 am

    why show only 51 of 78 comments? I left a fix for one of your hacks in an earlier comment,but nobody gets it?

  54. 54
    Justin Gehring
    March 14th, 2009 2:03 pm

    Pretty nice list. There’s one more tool I would recommend to people who are looking to promote their wordpress blog using twitter that just came out called twitcapt. Pretty nifty way of creating viral twitter messges…

    http://www.twitcapt.com/

  55. 55
    Mike
    March 18th, 2009 6:42 am

    is there by any chance a possiblity for u guys to show me the how to implement my latest tweet without the file_get_contents function? My hosting provider wouldn’t allow this one! =/
    I would really apprichiate it! :)

    Thx alot!

  56. 56
    Donna Payne
    March 18th, 2009 9:34 am

    I just love smashingmag. Y’all have the best resources – good quality stuff.

  57. 57
    Salem
    March 30th, 2009 12:33 pm

    I love this, and it has been really helpful. There are two things I was wondering, however… Is it possible to
    1. Make the “Tweet this!” image load a page with a tinyurl, rather than the full length of the blog post? I messed around a little bit and, knowing absolutely no php, didn’t get very far.
    2. make the “Tweet this!” image load only when someone comes from twitter? This way, instead of having text, I could just have that image? I tried just pasting the html code in the midst of the php, which apparently is NOT how it works.

    Could someone email me with replys at salem (AT) technoheads.org? I’d really appreciate it, and I’m not sure if the author of this post responds to comments.

  58. 58
    Anne Lindsay
    April 1st, 2009 2:27 pm

    tHANKS ONCE AGAIN.

  59. 59
    Jaime
    April 2nd, 2009 12:57 pm

    this is great! i already added the “latest tweet” hack and, after some tweaking with it, it is working great. One quick question:

    Does anyone know how to increase the font size of the tweet itself? I’ve been able to do this for the prefix and suffix, but I am having trouble finding where to add font customization for the tweet itself. Any help is greatly appreciated.

  60. 60
    Dean
    April 9th, 2009 8:25 am

    Great Stuff, simply great.

  61. 61
    DJ
    April 13th, 2009 8:28 am

    The Twitter Page using the RSS feed doesn’t work. It ask my readers for a username/password. A way around this?

  62. 62
    Dhane Diesil
    May 3rd, 2009 8:30 am

    What an awesome list of Twitter resources. I recently wrote an article on using the Twitter for Wordpress plugin from Ricks Hideout. Its a pretty cool plugin with a lot a flexibility. You can check out the tutorial here: http://desndev.com/how-to-add-twitter-to-your-wordpress-blog-sidebar-in-3-easy-steps/

  63. 63
    antonin
    May 15th, 2009 12:16 pm

    really nice article. many thanks for sharing the good stuff!
    cheers!

  64. 64
    Steve Patterson
    May 24th, 2009 8:02 pm

    Thanks for sharing! @friendlyknoxguy

  65. 65
    BK4D
    May 25th, 2009 12:21 am

    Great post. Thanks. I’ve implemented a number of them in my blog.

    I did find a couple of problems with the ‘Detect a visitor from Twitter’ hack which didn’t work. In your sample code the parameters in the PHP strpos function are the wrong way round. First parameter should be the haystack (the string you’re searching through), and the second should be the needle (the string you’re looking for). The correct syntax is…

    strpos($_SERVER[HTTP_REFERER], "twitter.com")

    However, even after that fix it still wasn’t working because the correct position of “twitter.com” in the $_SERVER[HTTP_REFERER] string is 7 because it has “http://” before it. In the end, to be sure, I checked for both 0 and 7.

    The code that works for me is below. Hopefully it helps anyone else that’s having trouble.

    $ref = $_SERVER[HTTP_REFERER];
    $pos = strpos($ref, "twitter.com");
    if ($pos == 0 || $pos == 7) {
    echo "Welcome, Twitter visitor! If you enjoy this post, don't hesitate to retweet!";
    }

  66. 66
    BK4D
    May 25th, 2009 8:29 pm

    Hi again,
    Just following on from my previous comment above, the “Welcome, Twitter visitor..” message was still appearing regardless of whether I came via Twitter or not. After changing the if statement to just…

    if ($pos == 7) {

    it was working correctly.

  67. 67
    James Holmes
    June 10th, 2009 8:17 am

    Jean -

    Excellent nuggets to maximize Word Press. Thank you for all of you excellent tips and post!

    James

  68. 68
    free business advertising
    June 14th, 2009 6:53 pm

    good plugin, i use this plugin now :)) tweet at own blog

  69. 69
    Jude
    July 12th, 2009 7:35 pm

    Thanks for the latest tweet without a plugin code. Exactly what I was looking for.

  70. 70
    the_guv
    July 27th, 2009 4:41 pm

    very nice, thank you Mr Jung.

  71. 71
    HERO
    July 31st, 2009 3:40 am

    Brilliant article! So informative. Thanks so much for all the great hacks, the latest tweet code is a priceless addition to my code arsenal!

  72. 72
    Nick Heer
    July 31st, 2009 7:54 pm

    I tried using that Twitter PHP code, but it doesn’t do so well with links and symbols. I created this version which does much better:

    <?php

    // Your twitter username.
    $username = "YOUR.USERNAME";

    // Prefix - some text you want displayed before your latest tweet.
    // (HTML is OK, but be sure to escape quotes with backslashes: for example href="link.html")
    $prefix = "Latest Tweet";

    // Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)
    $suffix = " ";

    $feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=1";

    function parse_feed($feed) {
    $stepOne = explode("", $feed);
    $stepTwo = explode("", $stepOne[1]);
    $tweet = $stepTwo[0];
    $tweet = str_replace("<", "", ">", $tweet);
    $tweet = str_replace(""", """, $tweet);
    $tweet = str_replace("&", "&", $tweet);
    $tweet = str_replace("<a href", "", "">", $tweet);
    $tweet = str_replace("
    ", "", $tweet);
    return $tweet;
    }

    $twitterFeed = file_get_contents($feed);
    echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);
    ?>

    And for some reason the code isn’t showing 100% perfectly here, either. http://idzr.org/hjggi6 is where a more readable copy of the code is.

  73. 73
    Tanveer
    August 8th, 2009 3:35 am

    Nice list.

  74. 74
    adrian
    August 19th, 2009 5:02 am

    Excellant article,also Ireally like your social buttons and comment system,not happy with the ones I am using,are they available for any body to use?

  75. 75
    Trinity511
    August 22nd, 2009 10:31 pm

    For the twitter-page.php: error report parsing error on line three. You wrote:

    1.

  76. 76
    Thomas McGregor
    September 28th, 2009 5:55 am

    Hey,

    I have actually just created a WordPress plugin that does exactly what Twittar does, but circumvents the problems since Twitter changed their stance on allowing to search by email address.

    You can find it here http://wordpress.org/extend/plugins/twitter-avatar

    Let me know what you think, cheers,

    Thomas

  77. 77
    Watch 2012 Online
    October 8th, 2009 2:24 pm

    you guys always post the greatest stuff. thanks for the help.

  78. 78
    derp
    November 17th, 2009 4:57 pm

    The part that says ‘Create a Twitter page on your WordPress blog’
    Doesn’t work. I copied the code exactly and all it says is
    An error has occurred, which probably means the feed is down. Try again later.

  1. 00

    There are no trackbacks at this time. If you are interested in leaving a trackback, please use this URL.

Leave a Comment

Make sure you enter the * required information where indicated. Please also rate the article as it will help us decide future content and posts. Comments are moderated – and rel="nofollow" is in use. Please no link dropping, no keywords or domains as names; do not spam, and do not advertise!



Advertisement Advertise with us!
Join in Smashing Forum
  • Re: Best Solution for IE6 png Transparency?

    thegator wrote:EDIT: Actually having said all that, I'm not sure why I'd need more than 256 colours for any of my images as they are. I…

  • Re: High Education!

    I did web design & development at university of abertay in Scotland. You can find other UK courses from the UCAS site - http://search.ucas.com/cgi-bin/hsrun/se…

  • High Education!

    Hey everybody (apologies in advance if I missed the correct forum section)!My name is Mykolas. I am 18-year-old student…

  • Re: Best Solution for IE6 png Transparency?

    OK, yeah, I understand what you are saying. However, when I tried converting some of my images to PNG8, even though the alpha transparency works great, gradients aren't…

  • Re: Unsatisfied with CMS

    Thank you smart.1, I will do so. I would have liked to have a general discussion on this topic. How do you style your content? By using a WYSIWYG-Editor,…

Post your job