我可能误解了你,但似乎是因为你的图像一开始不是250px高。原始图像尺寸是多少?
在Function Reference, 但是460
图像的最大宽度,以及250
将是最大高度。crop = true
简单地说,如果其中任何一个尺寸更大,图像将被裁剪以适合,而不是调整大小。
例如,拍摄690px x x 500px的图像-
/**
* This example will crop the image to just 460x250, therefore cutting off
* the excess pixels
*/
set_post_thumbnail_size(460, 250, true);
/**
* This example will resize the image to 345x250, so that it fits your desired
* dimensions while at the same time keeping the whole image
*/
set_post_thumbnail_size(460, 250);