Categories

Twitter for WordPress

Twitter for WordPress displays yours latest tweets in your WordPress blog.

Features

  • Simply
  • Customizable
  • Widget ready
  • Uses WordPress resources (no extra files needed)
  • No options page (yes, it’s a feature)
  • Detects URLs, e-mail address and @username replies
  • Multiple widgets (Thanks to Michael Feichtinger)

Installation

Drop the twitter-for-wordpress folder into /wp-content/plugins/ and activate the plug in.

Usage

If you use WordPress widgets, just drag the widget into your sidebar and configure.
If widgets aren’t your thing, use the following code to display your public Twitter messages:

twitter_messages('username');

Note: Your tweets must be unprotected (i.e. in the public timeline)

Twitter for WordPress also has several configurable options. Here’s what you can configure:

twitter_messages('username', [msgs], [list], [timestamp], ['link'], [hyperlinks], [twitter_users], [encode_utf8]); 
  • username: your twitter username
  • msgs: number of tweets to show (max. 20, limited by Twitter)
  • list: show tweets in a unordered list
  • timestamp: show a relative timestamp
  • linked: the link options
    • ‘all’: puts a link to the tweet status in all the tweet (the old-school way). This option disables the link discover features.
    • false or ”: no link at all to the tweet status
    • true or ‘something’: enable the link to the tweet status. You can customize the text.
  • hyperlinks: show URLs as clickable links
  • twitter_users: show @username replies as clickable links
  • encode_utf8:turn it on if you have encoding problems

Only username is required. The other parameters will take this default values:

twitter_messages('', 1, false, true, '#', true, true, false);

This is: 1 tweet, not in a list, with timestamps, with a # link to each tweet, with URLs and @username replies displayed as clickable links.

So, if I wanted to show my last 3 messages, not in a list, with timestamps, with a Go link, no links and encode_utf8, I would use the following:

twitter_messages('username', 3, false, true, 'Go', false, false, true);

Customization

The plug in provides the following CSS classes:

  • ul.twitter: the main ul (if list is activated)
  • li.twitter-item: the ul items (if list is activated)
  • p.twitter-message: each one of the paragraphs (if msgs > 1)
  • .twitter-timestamp: the timestamp span class
  • a.twitter-link: the tweet link class
  • a.twitter-user: the @username reply link class

Live Demo

twitter_messages('twittvigo', 5, true, true, '>>', true, true, false);

>’, true, true, false); ?>

Download

Mods

Version History

1.9.7 – 2009/08/27

  • Link discover regexp bug fixed (thanks to Webmancers)

1.9.6 – 2009/07/10

  • Improved link discover regexp (thanks to Allen Shaw)

1.9.5 – 2009/07/07

  • Several undocumented changes (mostly bugs acrosss different WordPress versions)
  • Added #trendingtopics link support (thanks to Michael Voigt)

1.9 – 2008/04/08

  • Now using human_time_diff() instead own function: better performance, less code and automagically i18n!

1.8.2 – 2008/04/01

  • I messed it up the encoding. Now works.

1.8 – 2008/03/31

  • Added encode_utf8 option in order to (hopefully) fix the encoding issues.

1.7 – 2008/01/03

1.6.1 – 2007/12/27

  • Due Hanok‘s request, added a linked option to make all tweet a link to the tweet status.

1.6 – 2007/12/27

  • Now the plugin also detects the @username replies and automagically transform them in links to the username twitter page.
  • Better URL discover method.

1.5 – 2007/12/26

  • Modified the linked option to make it more flexible and configurable. Now the link is at the tweet’s end, and you can configure it (even not display it).

1.4 – 2007/12/24

  • Added ‘hyperlink recognizer’.

1.3.2 – 2007/09/08

  • Fixed some HTML encoding issues. Props to Dave.

1.3.1 – 2007/08/22

  • Better feed handling. Now only the username is required.

1.3 – 2007/08/22

  • New relative date function

1.2 – 2007/08/21

  • Rearranged CSS classes

1.1.2 – 2007/08/20

  • Fixed a widget typo

1.1.1 – 2007/08/16

  • Fixed widgets bug and added widget options (Thanks to Neil MacLean)

1.1 – 2007/08/15

  • Added the link option (suggested by manuls)

1.0 – 2007/08/12

  • Initial Release

Credits

Contact

Suggestion, fixes, rants, congratulations, gifts et al to rick[at]jinlabs.com or by my contact page.

Code

Maybe you could be interested in my other plugins: Code

691 replies on “Twitter for WordPress”

[…] しかし、メールアドレスだと、Twitter一覧に表示されるリンクがメールアドレスになってしまうのでリンク切れになってしまいます。そこでWordPressに表示するTwitterのつぶやき一覧は、Twitter for WordPressプラグインで表示するようにしました。 タグ: Twitter, WordPress, プラグイン […]

[…] 在博客首页的右边增加了twitter sidebar,支持多个twitter widget,功能很不错,可以检测出@和Link。把我们两个的twiiter都给放上去了,呵呵。插件的名称是Twitter for WordPress,直接在wordpress里安装的。另外一个优点是,这个插件是通过程序去取twitter的信息,由于我的主机在美国,因此可以正常的显示。有些插件比如Twitter Widget因为使用JSONP,国内的浏览者就会被挡在墙外了。 […]

[…] Twit­ter For Word­press Twit­ter for Word­Press simply dis­plays your latest tweet(s) wherever you wish on your blog. There is no GUI set-up for this plu­gin, as it is all done in your theme tem­plate. The single line of code that I use to dis­play our latest tweet at the bot­tom right of the main page is <?php twitter_messages('spkitty', 1, true, false, '$lt;img src="/twitter_small.gif" alt="rss" width="18px" height="10px" /$gt;', true, true, false); ?>. This dis­plays the latest tweet from our feed, with no timestamp, with my little bird icon as a link to the tweet, and URLs and users both as click-able links. […]

[…] I only mention this because I’ve added a few feeds to the right-hand column of this page, kinda on a trial basis. Right now, I’ve added Stephen Colbert, Woot.com, Joystiq, GWJ and Giant Bomb (the latter three are gaming-related) to see if it works alright. I’ve only got the top two posts from each feed, but I think I can track up to 20 posts with this particular WordPress plugin. […]

Leave a Reply