gpt4 book ai didi

wordpress - 可以将YouTube标题添加到Wordpress [embed] [/embed]吗?

转载 作者:行者123 更新时间:2023-12-03 05:31:50 25 4
gpt4 key购买 nike

我试图弄清楚Wordpress上的[embed] [/ embed]短代码功能是否可以在iframe中显示标题?

将youtube视频显示在页面上后,对其进行检查时,其显示如下:

<iframe width="940" height="529" src="https://www.youtube.com/embed/xLZvgt_bPwE?feature=oembed" frameborder="0" allowfullscreen=""></iframe>

是否有一种方法可以编辑嵌入功能,使其还包括标题(例如,一旦在页面或帖子上显示,就是 <iframe width="940" height="529" title="Youtube Video" src="https://www.youtube.com/embed/xLZvgt_bPwE?feature=oembed" frameborder="0" allowfullscreen=""></iframe>

最佳答案

如果您将此过滤器和函数添加到您的functions.php中,它将提供您想要的结果:)

function add_iframe_title($iframe){
if($iframe)
{
$attributes = 'title="Embedded Video"';
$iframe = str_replace('></iframe>', ' ' . $attributes . '></iframe>', $iframe);

return $iframe;
}

return false;
}

add_filter('embed_oembed_html', 'my_embed_oembed_html', 99, 4);
function my_embed_oembed_html($html, $url, $attr, $post_id) {
if($html)
{
return add_iframe_title($html);
}
return false;
}

关于wordpress - 可以将YouTube标题添加到Wordpress [embed] [/embed]吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37037408/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com