我在一页上列出了很多产品,直到最近我使用的尺寸为 390px*238px。现在我必须将尺寸更改为其他内容,get_the_post_thumbnail
使用新参数更新方法,重新加载页面并显示我想要的所有内容。
但是,在下一次刷新时,一切都会恢复原状。当我检查元素时,显示的图像确实有 class attachment-390x501
,但它是width
,height
并且 src 属性显示 390、238 和path/to/website/uploads/2012/11/Profile_IS_20180-390x238.jpg
.
有没有办法改变我的缩略图尺寸?这是我目前使用的代码:
<?php
// previous dimensions were 390x238
echo get_the_post_thumbnail($product->ID, array(390,501));
?>