

移除WordPress上传图片的宽度和高度参数
source link: https://yjyj.net/learn/wordpress-learn/4336.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

移除WordPress上传图片的宽度和高度参数
我们都知道在wordpress后台上传的图片添加到日志内会附带宽高属性。虽然在 HTML 代码中直接为图片 img 标签书写宽高属性会为提高页面加载速度,但有时我们出于种种目的仍是需要去掉 WordPress 后台上传的的图片的宽高参数。那么我们该怎么做呢?
仍是需要在万能的 functions.php 上做文章,在其中加入下面的代码即可。
// Remove IMG Width Height 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; }
这样我们就无需手动删除图片上的宽高属性,直接动态的将图片的宽度高度参数抹去了!
给力代码来自:http://www.wondercss.com/2013/wordpress/1544/
感谢原作者分享.
Recommend
-
138
website upgrading… 京ICP备110065...
-
46
关于时尚营销,你最想了解什么类型的品牌?「国外小众品牌」以82.4%的高票位居榜首。那这类品牌如何做好营销? 筹备新栏目「时尚营销」的过程...
-
59
-
13
解决Taro下RichText遇到的图片宽度问题 2019-08-27...
-
11
因为Wordpress模板基本都需要调用到wp_head()这个函数,而这个函数自带了很多网页用不上的标签和链接资源。当网站打开的时候,这些相关调用都会影响到网站加载速度,而且这代码沉余会严重影响到SEO的整体优化,所以还是有必要清理干净。只要把下面的清除代码放...
-
8
WordPress上传图片出现“图像后期处理失败,请将其缩小到2500像素并重新上传”如果您发现本...
-
3
移除WordPress分类tag网址路径+固定链接重定向插件 2020年12月22日许多使用W...
-
10
如何实现WordPress支持WebP格式图片上传 2021-11-2514:0...
-
6
WordPress如何移除文章图片的宽度和高度属性 2021-12-1714:17:57评论745字 我们在使用
-
8
网页图片在某些 iPhone 机型下高度不正确Apr 19, 2022CSS点击父级有 display: flex, 作为子级的图片需要添加 align-self: flex-start
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK