This is can very well achieved using the following lines of code.
$username='techoguru';
$format='xml';
$tweet=simplexml_load_file("https://api.twitter.com/1/statuses/user_timeline/{$username}.{$format}");
echo $text = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", "\\0", $tweet->status[0]->text);
?>
Source
Also if when we need to with our wordpress site
//Set parameter for query string
$username = 'techoguru';
$num = '10';
// Get the data from Twitter JSON API
$json = wp_remote_get("http://api.twitter.com/1/statuses/user_timeline.json?screen_name=$username&count=$num");
// Decode JSON into array
$data = json_decode($json['body'], true);
//Create unordered list
echo '
- ';
- '.ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", "\\0", $text) . ' '. $h_time . ' ';
//Loop through all twitter tweets and display the text with the time it was created
foreach($data as $tweets)
{
$text = $tweets['text'];
$date = $tweets['created_at'];
//Make time human readable ie. 6 hours ago
$h_time = sprintf( __('%s ago'), human_time_diff( $time ) );
echo '
}
//Close list
echo '
Source
No comments:
Post a Comment