我使用embed_oembed_html过滤器来锁定YouTube iframe并做出响应,但这不起作用。一些线索?
我的功能:
function embed_html_vanellope($html, $url, $attr){
return '<div class="video-container">' . $html . '</div>';
}
add_filter('embed_oembed_html', 'embed_html_vanellope', 10, 3);
由于
答案 0 :(得分:0)
如果您使用的是Jetpack,它会覆盖此短代码,您必须使用它。
add_filter('video_embed_html', 'embed_html_vanellope');