找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 105|回复: 0

[cms教程] wordpress教程:移除图片的高度和宽度属性

[复制链接]

该用户从未签到

发表于 2015-3-11 12:39:14 | 显示全部楼层 |阅读模式

您需要 登录 才可以下载或查看,没有账号?立即注册

×
定义主题样式的时候,有可能需要移除本身图片的宽度和高度属性来方便我们使用CSS定义。
        将下面代码添加到主题的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;
        }
回复

使用道具 举报

网站地图|页面地图|文字地图|Archiver|手机版|小黑屋|找资源 |网站地图

GMT+8, 2024-6-26 21:54

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表