欢迎来到入门教程网!

WordPress

当前位置:主页 > CMS教程 > WordPress >

WordPress去除img标签的高度与宽度让图片自适应屏幕

来源:本站原创|时间:2020-01-11|栏目:WordPress|点击:

要求

如,在桌面设备上,图片使用的是以下的HTML代码:

复制代码
代码如下:

<img src="abc.png" alt="abc" width="580" height="267" />

在移动设备端,因为屏幕都比较小,如果要让图片自适应屏幕,我们应当把width和height属性去除,不然图片可能会比屏幕大:

复制代码
代码如下:

<img src="abc.png" alt="abc" />

方法一,
将下面代码复制到当前主题的 functions.php 文件中:

复制代码
代码如下:

add_filter( 'post_thumbnail_html', 'remove_width_attribute', 10 );
add_filter( 'image_send_to_editor', 'remove_width_attribute', 10 );
function remove_width_attribute( $html ) {
$html = preg_replace( '/(width|height)="\d*"\s/', "", $html );
return $html;
}

方法二

复制代码
代码如下:

// 自适应图片删除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($images[0] as $index => $value){
$new_img = preg_replace('/(width|height)="\d*"\s/', "", $images[0][$index]);
$content = str_replace($images[0][$index], $new_img, $content);
}
}
return $content;
}
// 判断是否是移动设备浏览
if(wp_is_mobile()) {
// 删除文章内容中img的width和height属性
add_filter('the_content', 'ludou_remove_width_height_attribute', 99);
}

这样我再试一下是不是达到想要的结果了。

上一篇:为wordpress增加网站公告功能

栏    目:WordPress

下一篇:在wordpress可视化编辑器中输入带缩进的代码

本文标题:WordPress去除img标签的高度与宽度让图片自适应屏幕

本文地址:https://www.xiuzhanwang.com/a1/WordPress/12778.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有