这段代码将移除<img>标签中的width和height属性。 使用插件: 你也可以使用 WordPress 插件来轻松实现这一功能。以下是一个流行的插件示例: Remove Image Attributes 安装并激活此插件后,它将自动移除所有图片的width和height属性。 无论选择哪种方法,都应该能够让你的 WordPress 网站中的图片自适应而不受固定的高度和...
代码如下: // 自适应图片删除width和height,by Ludou function ludou_remove_width_height_attribute($content) preg_match_all("/<img|IMG.*?src=\'|\"(.*?(?:\.gif|\.jpg|\.png\.bmp))\'|\".*?\/?>/", $content, $images); if(!empty($images)) foreach($images0 as $index => $valu...