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