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