我想知道Wordpress的嵌入快捷码功能是否有可能在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>?
发布于 2016-08-11 09:15:37
如果您将此筛选器和函数添加到您的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;
}https://stackoverflow.com/questions/37037408
复制相似问题