web-dev-qa-db-ja.com

特定のハッシュタグ付きツイートをWordpressにインポートする

つぶやきをWordpressに投稿としてインポートする方法を探しています。実際には、私はWordpressのページ上の特定のトピックに関するつぶやきを表示したいです。そのため、ページAにはhashtag xに関するツイートが含まれ、ページBにはhashtag yに関するツイートが含まれます。

ツイートをインポートするプラグイン(Tweet-Import)は少なくとも1つありますが、ハッシュタグではなく特定のユーザーのみがツイートをインポートできます。

これを行うことができる方法はありますか?

乾杯!

4
user3201

私は "Twitter Hash Tag Widget"プラグインに基づいてショートコード機能を書きました

この関数をあなたのthemes functions.phpファイルにコピーするだけです。

function tweets_by_hashtag_9867($atts, $content = null){
            extract(shortcode_atts(array(
                "hashtag" => 'default_tag',
                "number" => 5,
                ), $atts));
        $api_url = 'http://search.Twitter.com/search.json';
        $raw_response = wp_remote_get("$api_url?q=%23$hashtag&rpp=$number");

        if ( is_wp_error($raw_response) ) {
            $output = "<p>Failed to update from Twitter!</p>\n";
            $output .= "<!--{$raw_response->errors['http_request_failed'][0]}-->\n";
            $output .= get_option('Twitter_hash_tag_cache');
        } else {
            if ( function_exists('json_decode') ) {
                $response = get_object_vars(json_decode($raw_response['body']));
                for ( $i=0; $i < count($response['results']); $i++ ) {
                    $response['results'][$i] = get_object_vars($response['results'][$i]);
                }
            } else {
                include(ABSPATH . WPINC . '/js/tinymce/plugins/spellchecker/classes/utils/JSON.php');
                $json = new Moxiecode_JSON();
                $response = @$json->decode($raw_response['body']);
            }

            $output = "<div class='Twitter-hash-tag'>\n";
            foreach ( $response['results'] as $result ) {
                $text = $result['text'];
                $user = $result['from_user'];
                $image = $result['profile_image_url'];
                $user_url = "http://Twitter.com/$user";
                $source_url = "$user_url/status/{$result['id']}";

                $text = preg_replace('|(https?://[^\ ]+)|', '<a href="$1">$1</a>', $text);
                $text = preg_replace('|@(\w+)|', '<a href="http://Twitter.com/$1">@$1</a>', $text);
                $text = preg_replace('|#(\w+)|', '<a href="http://search.Twitter.com/search?q=%23$1">#$1</a>', $text);

                $output .= "<div>";

                if ( $images )
                    $output .= "<a href='$user_url'><img src='$image' alt='$user' /></a>";
                $output .= "<a href='$user_url'>$user</a>: $text <a href='$source_url'>&raquo;</a></div>\n";
            }
            $output .= "<div class='view-all'><a href='http://search.Twitter.com/search?q=%23$hashtag'>" . __('View All') . "</a></div>\n";
            $output .= "</div>\n";
        }

        return $output;
}

それからthemes functions.phpファイルに次の行を追加して短いコードに変換してください:

add_shortcode("hashtag_tweets", "tweets_by_hashtag_9867");

あとは、新しいページや投稿を作成してショートコードを入力するだけです。

[hashtag_tweets hashtag="YOUR_TAG" number="NUMBER_OF_TWEETS_TO_GET"]

yOUR_TAGをあなたのハッシュタグに変更し、NUMBER_OF_TWEETS_TO_GETを取得したいツイートの数に変更してください。

お役に立てれば。

11
Bainternet