如果在函数中设置图像大小。php作为“图库”
add_image_size( \'gallery\', 200, 120, true );
您可以删除特定图像大小(如“gallery”)的宽度和高度:
add_filter( \'post_thumbnail_html\', \'remove_thumbnail_dimensions\', 10, 4 );
function remove_thumbnail_dimensions( $html, $post_id, $post_image_id,$post_thumbnail) {
if ($post_thumbnail==\'gallery\'){
$html = preg_replace( \'/(width|height)=\\"\\d*\\"\\s/\', "", $html );
}
return $html;
}