我想添加一个短代码来添加一个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');
?>
现在我想替换链接或者xxxxxxxxx部分。我希望有人愿意帮助我:)