定義主題樣式的時候,有可能需要移除本身圖片的寬度和高度屬性來方便我們使用 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;
}