
How to Add Latest Tweet to Wordpress (Without a Plugin)
Adam Scheinberg, February 18, 2009 (16 years ago)
I decided to add my latest "tweet" from Twitter to the sidebar of my Wordpress blog. Rather than use yet another plugin that adds yet another hook - and there are many that do this with lots of code, I decided to use a homegrown solution, dependant only on PHP4+ and cURL (most webhosts already have cURL compiled in, if not, you should request it). Adding the following to any of the files in your Wordpress theme will print out your current Twitter status and cache the results so you don't hammer their system.
First, snag your Twitter user id. Then, open up your theme file. I put mine in sidebar.php found in /wp-content/themes/<THEMENAME>/. Use the below code. If you want the output wrapped in a list, you would need to put <ul> and <li> tags around this code.
Carefully set your variables. The cache file should be writable. Note that you can use a decimal value for $tw_BlankAfter and $tw_Minutes if necessary. That's it.
Due to what must be a bug in Wordpress, please ignore the closing "</text></created_at>" at the end of this post. It's trying be smart and "fix" broken tags, but the code is right.
NOTE (2/20/09): I have updated the below code. The new version can be found at "Posting Your Latest Tweet in Wordpress".
Please note that portions of this code come from the twtter_status() function that was not written by me, but is available from various sources online.
Update: Removed function and put code inline.
First, snag your Twitter user id. Then, open up your theme file. I put mine in sidebar.php found in /wp-content/themes/<THEMENAME>/. Use the below code. If you want the output wrapped in a list, you would need to put <ul> and <li> tags around this code.
Carefully set your variables. The cache file should be writable. Note that you can use a decimal value for $tw_BlankAfter and $tw_Minutes if necessary. That's it.
Due to what must be a bug in Wordpress, please ignore the closing "</text></created_at>" at the end of this post. It's trying be smart and "fix" broken tags, but the code is right.
NOTE (2/20/09): I have updated the below code. The new version can be found at "Posting Your Latest Tweet in Wordpress".
/* ~~~~ Custom Twitter Bit ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~ Adam S, sethadam1.com, twitter @sethadam1 ~~~~~~~~~~~~~~~~~~~~ */
$tw_File = '/path/to/a/static/writable/file/twitter.html';
$tw_Userid='XXXXXXX'; //set to your Twitter user id
$tw_BlankAfter = 30; //blank out status if it's older than this many days
$tw_Minutes = 10; //minutes between reloads
$tw_Offset = FALSE; //leave as is
// uncomment below time if you want to allow a manual reset via ?twitter-reset
// if($_SERVER['QUERY_STRING']=='twitter-reset') { $tw_Offset=0; }
/* Do not edit below this line */
if(filemtime($tw_File)>time()-floatval($tw_Offset)) {
include $tw_File;
} else {
if(is_writable($tw_File)) { $tw_iswritable=1; }
$tw_time = (86400*floatval($tw_BlankAfter));
if($tw_Offset) { $tw_time=$tw_Offset; }
$tw_hyperlinks = true;
$tw_c = curl_init();
curl_setopt($tw_c, CURLOPT_URL,
"http://twitter.com/statuses/user_timeline/"
.intval($tw_Userid).".xml");
curl_setopt($tw_c, CURLOPT_RETURNTRANSFER, 1);
$tw_src = curl_exec($tw_c);
curl_close($tw_c);
preg_match('/(.*)< \/created_at>/', $tw_src, $tw_d);
if(strtotime($tw_d[1]) > time()-$tw_time) {
preg_match('/(.*)< \/text>/', $tw_src, $tw_m);
$tw_status = htmlentities(str_replace("&","&",$tw_m[1]));
if( $tw_hyperlinks ) {
$tw_status = ereg_replace(
"[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",
"\\0",
$tw_status);
}
$tw_output = $tw_status;
} else {
if($tw_iswritable==1) {file_put_contents($tw_File,''); }
}
if($tw_iswritable==1) { file_put_contents($tw_File,$tw_output); }
echo $tw_output;
}
/* ~~~ /Custom Twitter Bit ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
Please note that portions of this code come from the twtter_status() function that was not written by me, but is available from various sources online.
Update: Removed function and put code inline.
Can you suggest a better way?