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

2015-03-11 0 528
 
定义主题样式的时候,有可能需要移除本身图片的宽度和高度属性来方便我们使用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;
}
收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

整合全网资源下载 wordpress教程 wordpress教程:移除图片的高度和宽度属性 https://www.xliem.com/1259.html

常见问题

相关文章

官方客服团队

为您解决烦忧 - 24小时在线 专业服务