通過 wordpress 后臺上傳圖片,并且將圖片插入到日志中,wordpress 會自動生成的 <img> 的 html 標簽中包含圖片的寬度和高度參數,如果你使用的是響應式的 wordpress 主題,那么這個可能會造成一些問題。下面的這段代碼可以解決這個問題。
將下面代碼復制到當前主題的 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;
}