WP Oembed没有通过"autoplay = 1"变量

cri*_*erz 2 javascript php youtube wordpress oembed

我有这个问题.

我在这里通过自定义字段传递此信息

(notice the "autoplay=1")

但是,当我使用wp_oembed_get... 加载我的主题视频时,它显示视频很好,但它不会听autoplay=1我正在通过的变量.

我需要在页面加载时播放视频.

man*_*ish 6

我认为这样做的方法是使用wordpress过滤器:

function modify_youtube_embed_url($html) {
    return str_replace("?feature=oembed", "?feature=oembed&autoplay=1", $html);
}
add_filter('oembed_result', 'modify_youtube_embed_url');
Run Code Online (Sandbox Code Playgroud)