我在functions.php中使用以下代码来调整我的IFRAMES的大小
function add_youtube_size($youtubehtml) {
if (strpos($youtubehtml, "<iframe" ) !== false) {
$youtubesearch = array( 'width="460"', 'height="310"');
$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);
但是此代码仅编辑 460 x 310 的 iframe 的大小。
有什么方法可以改变那条线
$youtube search = array( 'width="460"', 'height="310"');
以获得任何可能的尺寸?
是的,你可以改变它
$youtubesearch = array( 'width="460"', 'height="310"');
$youtubereplace = array( 'width="600"', 'height="338"');
在这些行中将width和height更改为您需要的内容,但重要的是您的搜索视频也应该以您书面的宽度和高度提供