5

私はワードプレス側で作業していて、このアイデアを思いつきました。トップ記事を決定するために「いいね/お気に入り」機能を実装する代わりに、その記事が受け取ったFacebookの共有、ツイート、および+1の数を一緒に数え、それらがすべて一緒に数えられたら、それらをデータベースに保存します(記事に応じて)ですので、共有数、ツイート数、+1 数が最も多い記事を選ぶことで、上位の記事を選ぶことができます。また、ユーザーが facebook、twitter、または g+ ボタンのいずれかをクリックするたびに、データベースを更新する必要があります。

これは、Word Press 内で API を使用して達成できますか?

4

1 に答える 1

8

これは見た目ほど単純ではありません。

GitHub には、実装したいすべての API を含む優れた要点があります: Get the share counts from Various APIs

これらのサーバーに接続し、jQuery と AJAX を使用してデータを取得できます。

function how_many_tweets(url, post_id) {
    var api_url = "http://cdn.api.twitter.com/1/urls/count.json";
    var just_url = url || document.location.href;
    $.ajax({
        url: api_url + "?callback=?&url=" + just_url,
        dataType: 'json',
        success: function(data) {
            var tweets_count = data.count;
            // do something with it
        }
    });
}

function how_many_fb_shares(url, post_id) {
    var api_url = "http://api.facebook.com/restserver.php";
    var just_url = url || document.location.href;
    $.ajax({
        url: api_url + "?method=links.getStats&format=json&urls=" + just_url,
        dataType: 'json',
        success: function(data) {
            var shares_count = data[0].total_count;
            // do something with it
        }
    });
};

function how_many_google_pluses(url, api_key, post_id) {
    var api_url = "https://clients6.google.com/rpc?key=" + api_key;
    var just_url = url || document.location.href;
    $.ajax({
        url: api_url,
        dataType: 'json',
        contentType: 'application/json',
        type: 'POST',
        processData: false,
        data: '[{"method":"pos.plusones.get","id":"p","params":{"nolog":true,"id":"' + just_url + '","source":"widget","userId":"@viewer","groupId":"@self"},"jsonrpc":"2.0","key":"p","apiVersion":"v1"}]',
        success: function(data) {
            var google_pluses = data.result.metadata.globalCounts.count;
            // do something with it
        }
    })
}

// do something with it次に、行をブログへの別の AJAX リクエストに置き換えることができます。このリクエストを処理し、データを $wpdb に保存するには、プラグインを作成する必要があります。プラグインは比較的単純です。

<?php

/*
    Plugin Name: Save Share Count Request Plugin
    Plugin URI: http://yourdomain.com/
    Description: This plugin catches 'save share count' requests and updates the database.
    Version: 1.0

*/

// check if request is a 'save share count' request
// i'm using sscrp_ prefix just not to redefine another function
// sscrp_ means SaveShareCountRequestPlugin_
function sscrp_is_save_share_count_request() {
    if(isset($_GET['_save_share_count_request'])) return true;
    else return false;
}

// save the count in database
function sscrp_save_share_count_in_wpdb($type, $count, $post_id) {

    // $count is your new count for the post with $post_id
    // $type is your social media type (can be e.g.: 'twitter', 'facebook', 'googleplus')
    // $post_id is post's id

    global $wpdb;

    // create a $wpdb query and save $post_id's $count for $type.
    // i will not show how to do it here, you have to work a little bit

    // return true or false, depending on query success.

    return false;
}

// catches the request, saves count and responds
function sscrp_catch_save_share_count_request() {
    if(sscrp_is_save_share_count_request()) {
        if(isset($_GET['type'])) {
            $social_media_type = $_GET['type'];
            $new_count = $_GET['value'];
            $post_id = $_GET['post_id'];
            if(sscrp_save_share_count_in_wpdb($social_media_type, $new_count, $post_id)) {
                header(sprintf('Content-type: %s', 'application/json'));
                die(json_encode(array("sscrp_saved"=>true)));
            } else {
                header(sprintf('Content-type: %s', 'application/json'));
                die(json_encode(array("sscrp_saved"=>false)));
            }
        } else {
            header(sprintf('Content-type: %s', 'application/json'));
            die(json_encode(array("sscrp_saved"=>false)));
        }
    }
}

// catch the save request just after wp is loaded
add_action('wp_loaded', 'sscrp_catch_save_share_count_request');

?>

// do something with itプラグインがあれば、JavaScript ファイルの行を編集できます。

  1. それhow_many_tweets()は次のようになります。

    $.ajax({
        url: "http://yourdomain.com/path_to_your_wp_installation/?_save_share_count_request=1&type=twitter&value=" + tweets_count + "&post_id=" + post_id,
        dataType: 'json',
        success: function(data) {
            var saved = data.sscrp_saved;
            if(saved) {
                // done!
            } else {
                // oh crap, an error occured
            }
        }
    });
    
  2. how_many_fb_shares()コードをコピーして貼り付けるには、次のhow_many_tweets()ように変更します。

    ...
        url: "... &type=facebook ...
    ...
    
  3. how_many_google_pluses()facebook と同じようにするには:

    ...
        url: "... &type=googleplus ...
    ...
    

次に、に書き込んだとを使用して投稿をフィルタリングする必要があります。$type$count$wpdb


今行かなければならない。Facebook、Twitter、および Google の API への接続に関する単なる情報以上のものを提供しました。ぜひご活用いただき、ご自身のやりたいことを実現していただければ幸いです。

于 2013-03-02T13:40:46.230 に答える