WordPress按照上传图像的尺寸按比例裁剪图像,除非您指定的缩略图大小用于裁剪缩略图(仅为缩略图提供选项)。因此,将创建的图像重命名为其裁剪到的大小。
默认情况下,WordPress创建4个或更少的图像,具体取决于您上载的图像大小。一个是原始图像,大、中、缩略图。如果上载的图像小于缩略图中提到的大小,则不会创建额外的图像。使用此功能上载图像时,可以创建更多图像大小。
$crop = true; //if you want the image to stay proportional set this to false
add_image_size( \'extra\', 135, 135, $crop);
关于如何使用不同的大小,可以在循环中使用以下代码。
the_post_thumbnail( \'thumbnail\' );
the_post_thumbnail( \'medium\' );
the_post_thumbnail( \'large\' );
the_post_thumbnail( \'full\' ); //this will output the whole image as was uploaded
the_post_thumbnail( \'extra\' ); //if using the above add_image_size code.