youtube 视频 wordpress 的简码

Shortcode for youtube videos wordpress

我想添加一个短代码以将 YouTube 视频添加到我的网站。我想用 cookiebot 屏蔽内容。

如果我添加一个没有任何简码的 YouTube 视频,代码如下:

<div class="cookieconsent-optout-marketing">
      Please 
    <a href="javascript:Cookiebot.renew()">accept marketing-cookies</a> to watch this video.
    
</div>
<iframe data-src="https://www.youtube.com/embed/xxxxxxxxxxx" data-cookieconsent="marketing" frameborder="0" allowfullscreen></iframe>

所以我很难使用简码。我只知道如何添加新的简码。到目前为止,这是我的简码:

<?php

function youtube_function()
{

    $output = '
           <div class="cookieconsent-optout-marketing">
             Please <a href="javascript:Cookiebot.renew()">accept marketing-cookies</a> to watch this video.
           </div>
           
           <iframe data-src="https://www.youtube.com/embed/xxxxxxxxxxx" data-cookieconsent="marketing" frameborder="0" allowfullscreen></iframe>';

    return $output;
}

add_shortcode('ytvideo', 'youtube_function');

?>

现在我想替换 link 或 xxxxxxxxxx 部分。我希望有人愿意帮助我:)

 <?php

function youtube_function($atts) {

    extract(shortcode_atts( array(
        'video' => '',
    ), $atts ));
    
    $output = '
    <div class="cookieconsent-optout-marketing">
    Please <a href="javascript:Cookiebot.renew()">accept marketing-cookies</a> to watch this video.
    </div>

    <iframe data-src="https://www.youtube.com/embed/' . $video .'" data-cookieconsent="marketing" frameborder="0" allowfullscreen></iframe>';

    return $output;
}



add_shortcode('ytvideo', 'youtube_function');

?>

这样使用简码: [ytvideo 视频="id_of_video_xxxx"]