默認(rèn)情況下,通過(guò)WordPress自身的媒體上傳功能插入到文章的圖片,都會(huì)默認(rèn)添加了高度和寬度屬性:
如果想去掉這個(gè)高度和寬度屬性,可以將下面的代碼添加到主題的 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;
}
新聞熱點(diǎn)
疑難解答
圖片精選