wordpress 错误的特色图片大小

wordpress wrong featured image size

我遇到了一个问题,wordpress 在单个博客上不断调整特色图片的大小 post。

这里是 html 的一个例子,它为:

the_post_thumbnail('large');

<img width="1900" height="849" src="http://127.0.0.1/wp-content/uploads/2016/02/MyImage-1903x850.png" class="attachment-large size-large wp-post-image" alt="MyImage-1903x850" srcset="http://127.0.0.1/wp-content/uploads/2016/02/MyImage-600x268.png 600w, http://127.0.0.1/wp-content/uploads/2016/02/MyImage-1903x850.png 1903w" sizes="(max-width: 1900px) 100vw, 1900px">

如您所见,实际图像尺寸为 1903x850。但是wordpress已经决定在1900x849

的img标签中添加一个不同的width/height

我试过使用重新生成缩略图并重新上传图像,但真的很奇怪,似乎无法弄清楚为什么会这样。

图片正在缩小,因为最大宽度设置为“1900 像素”,而图片实际上是 1903 像素。