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

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

时间:2025-10-17 15:23:47 本站 点击:31

把下面的代码放在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; 
}


《wordpress 特色图片去掉width宽度 直接调用src 缩略图自适应响应式》
将本文的文档下载到电脑,方便收藏和打印
推荐度:
下载文档

文档为doc格式