gpt4 book ai didi

php - 如何使用 easyxdm 跨域自动调整 WordPress 页面内 iframe 的大小?

转载 作者:行者123 更新时间:2023-11-28 10:06:32 24 4
gpt4 key购买 nike

所以我找到了这个工具,可以自动调整 html 页面 iframe 的大小:

http://consumer.easyxdm.net/current/example/resize_iframe.html

但是当我按照他们的示例进行操作时,它无法在 WordPress 中运行。

有谁知道如何使其工作或有其他方法可以与 WordPress 中嵌入的 iframe 配合使用吗?

最佳答案

将此添加到functions.php,它将找到每个宽度= 560和高度= 315的iframe并将其更改为宽度= 600和高度= 338

    function add_youtube_size($youtubehtml) {
if (strpos($youtubehtml, "<iframe" ) !== false) {
$youtubesearch = array( 'width="560"', 'height="315"');
$youtubereplace = array( 'width="600"', 'height="338"');
$youtubehtml = str_replace($youtubesearch, $youtubereplace, $youtubehtml);

return $youtubehtml;
} else {
return $youtubehtml;
}
}
add_filter('the_content', 'add_youtube_size', 10);

关于php - 如何使用 easyxdm 跨域自动调整 WordPress 页面内 iframe 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8263831/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com