Wordpress Shortcode通过YouTube API获取Youtube频道观看次数

时间:2017-07-09 10:35:55

标签: php wordpress youtube youtube-api

我是Wordpress用户,而不是程序员。 我想在functions.php中创建一个短代码,以获取任何youtube频道的总观看次数。

我使用短代码并给出通道ID值。短代码功能通过YouTube API返回给定频道ID的当前频道视图。

在YouTube文档中,我找到了以下代码:

function channelsListById($service, $part, $params) {
    $params = array_filter($params);
    $response = $service->channels->listChannels(
        $part,
        $params
    );

    print_r($response);
}

channelsListById($service,
    'statistics', 
    array('id' => 'UC_x5XG1OV2P6uZZ5FSM9Ttw'));
}

响应看起来像这样:

/**
 * API response
 */
{
  "kind": "youtube#channelListResponse",
  "etag": "\"m2yskBQFythfE4irbTIeOgYYfBU/d9WwK8U1FuV6c-shZpzmnYUgGvQ\"",
  "pageInfo": {
    "totalResults": 1,
    "resultsPerPage": 1
  },
  "items": [
    {
      "kind": "youtube#channel",
      "etag": "\"m2yskBQFythfE4irbTIeOgYYfBU/Psv3E9LCdk66gkF4HSIYK44crMI\"",
      "id": "UC_x5XG1OV2P6uZZ5FSM9Ttw",
      "statistics": {
        "viewCount": "118283693",
        "commentCount": "393",
        "subscriberCount": "1165598",
        "hiddenSubscriberCount": false,
        "videoCount": "4435"
      }
    }
  ]
}

我认为,我需要添加一些代码来获取项目字段“viewCount”值。

我不知道是否可以这样做,但我希望你们中的一些人知道解决方案。

在代码的最后,我只需要添加:

add_shortcode( 'channel_views', 'shortcode_title' );

如果你能用我必须反转的函数回复函数,那就太棒了。)

如果您需要更多信息才能回复,请问我。

1 个答案:

答案 0 :(得分:-2)

使用此插件。

https://wordpress.org/plugins/youmax-channel-embeds-for-youtube-businesses/

此插件只是以网格格式从youtube频道获取所有视频。