默认情况下,the_post_thumbnail()
$大小参数为“后期缩略图”。您可以通过将此行添加到函数中来设置它。php:
set_post_thumbnail_size(125,125,true);
如果这仍然不能更新图像的大小,您可能需要使用如下插件
"Regenerate Thumbnails."或者,您可以将图像设置为使用定义大小的媒体选项之一,方法是向缩略图模板标记传递$size参数,如下所示:
the_post_thumbnail( \'thumbnail\' ); // display post thumbnail with the "Thumbnail" size defined in Settings > Media.