过滤器不起作用" embed_oembed_html"

时间:2017-04-04 21:53:35

标签: wordpress iframe filter youtube

我使用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);

由于

1 个答案:

答案 0 :(得分:0)

如果您使用的是Jetpack,它会覆盖此短代码,您必须使用它。

add_filter('video_embed_html', 'embed_html_vanellope');