当您通过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;
}
更新:如今,这几乎肯定是个坏主意,因为width
和height
有助于在加载时为图像保留空间 ,即使在流体宽度的情况下也是如此。
翻译自: https://css-tricks.com/snippets/wordpress/remove-width-and-height-attributes-from-inserted-images/