我有这个问题。

我通过自定义字段here传递了此信息
(notice the "autoplay=1")
但是,当我使用wp_oembed_get将视频加载到主题上时...会很好地显示视频,但不会听我传递的autoplay=1变量。

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

最佳答案

我认为做到这一点的方法是使用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');

关于php - WP Oembed没有通过 “autoplay=1”变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4442758/

10-09 18:48