总有一个过滤器可以用来连接到输出中,请参见embed_oembed_html
. 在自定义插件或子主题的函数文件中尝试此操作,它将向iframe
src
属性:
add_filter("embed_oembed_html", function( $html, $url, $attr ) {
parse_str(parse_url($url, PHP_URL_QUERY), $url);
if ( $url ) {
foreach ( $url as $q=>$v ) {
preg_match(\'/src="([^"]+)"/\', $html, $src);
if ( isset( $src[1] ) ) {
$html = str_replace(
$src[1],
add_query_arg( array( $q=>$v ), $src[1] ),
$html
);
}
}
}
return $html;
}, 10, 3);
确保没有不想添加到的查询字符串
iframe
src
用一个
continue;
消息灵通的
希望这有帮助。