我正在研究wordpress主题,WP现在使用oEmbed自动将已知链接转换为小部件。这里的问题是小部件没有响应(它们不保持相同的宽高比并调整到屏幕大小)。
该网站为http://testsite1.seyoum.net/ 请注意,我使用的主题是二十五岁的儿童主题。您可以在此处下载主题文件: https://onedrive.live.com/redir?resid=B9CDD4D34FF06A75!97938&authkey=!AEj9VpYkCRL0SEE&ithint=file%2crar
我做了一些研究并找到了这段视频:https://youtu.be/Dm0YnuQeROI 在视频中,他删除了iframe的with和height属性。对我来说问题是这些标签是由oEmbedd自动添加的,所以我需要某种过滤器来删除/忽略iframe中的高度和宽度标签。
我正在尝试更改iframe。更具体地说,我想通过使用(我相信的)过滤器来删除iframe的高度和宽度标签。
实施例: 我想改变这个
<iframe width="660" height="400" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?visual=true&color=000000&download=false&show_user=false&sharing=false&show_comments=false&show_playcount=false&hide_related=true&url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F192992432&show_artwork=false&&"></iframe>
对此: (宽度=“660”高度=“400”消失了)
<iframe scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?visual=true&color=000000&download=false&show_user=false&sharing=false&show_comments=false&show_playcount=false&hide_related=true&url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F192992432&show_artwork=false&&"></iframe>
我不熟悉php,很难找到我能理解的文章,所以如果可以,请帮帮我。
答案 0 :(得分:0)
尝试使用
function mycustom_embed_defaults($embed_size){
// Applies for all embedded media
/*$embed_size['width'] = 827;*/ // Adjust the width of the player
// $embed_size['height'] = 120; // Adjust the height of the player
unset($embed_size['width']);
unset($embed_size['height']);
return $embed_size; // Return new size
}
或
function mycustom_embed_defaults($embed_size){
// Applies for all embedded media
$embed_size['width'] = "auto"; // Adjust the width of the player
$embed_size['height'] = "auto"; // Adjust the height of the player
return $embed_size; // Return new size
}
或
function mycustom_embed_defaults($embed_size){
// Applies for all embedded media
$embed_size['width'] = "100%"; // Adjust the width of the player
$embed_size['height'] = "100%"; // Adjust the height of the player
return $embed_size; // Return new size
}
问题是你的插件似乎需要width属性......你所要做的就是知道你想要的是什么......它不一定是像素值...