wordpress 特色图片去掉width宽度 直接调用src 缩略图自适应响应式

来自:互联网
时间:2018-08-28
阅读:

把下面的代码放在functions.php中即可去掉img中的width和height属性,从而可以在CSS中自定义图片宽高.

// 自适应图片删除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; 
}
返回顶部
顶部