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;
}

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注




Enter Captcha Here :