每次从WordPress 媒体后台上传图片,插入到文章编辑页中就会自动带上width和height的尺寸参数,烦死了;有些超级大图总把页面撑破。
现在总算找到了办法:在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; }