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