youtube订阅按钮下面的视频就像是视频的一部分

时间:2016-04-29 23:51:40

标签: wordpress youtube-api

我看到很多热门网站都使用youtube订阅按钮,如附图所示。但我无法知道如何在网站please check the image for more deatails

中使用该订阅按钮

这里是使用相同订阅按钮的故事选择的html文本

< div class =“video-byline”>                     订阅Storypick                                     

2 个答案:

答案 0 :(得分:1)

您必须使用此代码

 <iframe width="560" height="315" src="https://www.youtube.com/embed/QFu_Kmn3qOk" frameborder="0" allowfullscreen></iframe>
  <script src="https://apis.google.com/js/platform.js"></script>

<script>
  function onYtEvent(payload) {
    if (payload.eventType == 'subscribe') {
      // Add code to handle subscribe event.
    } else if (payload.eventType == 'unsubscribe') {
      // Add code to handle unsubscribe event.
    }
    if (window.console) { // for debugging only
      window.console.log('YT event: ', payload);
    }
  }
</script>

点击此链接https://developers.google.com/youtube/youtube_subscribe_button

您可以使用按钮

选择许​​多配置

希望这有帮助

保重和快乐编码

答案 1 :(得分:0)

您可以在here上创建“订阅”按钮。

您也可以创建自己的按钮,然后将其链接到订阅确认页面,您可以将?sub_confirmation=1附加到您的频道网址:https://www.youtube.com/channel/your_channel_id?sub_confirmation=1example