定义主题样式的时候,有可能需要移除本身图片的宽度和高度属性来方便我们使用 CSS 定义。

将下面代码添加到主题的 functions.php 即可

1
2
3
4
5
6
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;
}