Twitterのまとめに使っているプラグインTwitter Digestが、なんとTwitter API 1.1に対応! Ver.2.8になりました。で、前のバージョンで施していた、表示フォーマットの変更と、サムネイル画像の挿入を行いました。
時刻を先頭にするために、最初のフォーマット部分を削除します。
// Returns an html formatted $tweet. This is almost directly borrowed from Twitter Tools function ws_format_tweet($tweet) { $output = ‘<li class="ws_tweet">’; // $output .= ws_make_clickable(wp_specialchars($tweet->text)); // if (!empty($tweet->in_reply_to_screen_name) // && (!empty($tweet->in_reply_to_status_id))) { // $output .= ‘ <a href="’.ws_status_url($tweet->in_reply_to_screen_name, $tweet->in_reply_to_status_id).’">’.sprintf(__(‘in reply to %s’, ‘twitter-digest’), $tweet->in_reply_to_screen_name).'</a>’; // } // Show the […]