the_post_thumbnail 允许尺寸规格。所以你会这样做:
<?php the_post_thumbnail(\'medium\'); ?>
如果您在管理中更改了图像尺寸,则需要返回并重新上载图像,以便它们裁剪到您设置的正确大小
如果问题是图像的尺寸,您可能正在寻找硬裁剪。最好的选择是使用add_image_size 在您的功能中。php。
add_image_size( \'new-image-name\', 250, 150, true );
然后重新上传图像
<?php the_post_thumbnail(\'new-image-name\'); ?>