既然您已经更改了主题,那么您应该坚持使用主题的图像大小&;删除“简单图像大小”插件。这将确保图像完美显示。
如果您仍打算删除一些尺寸,请在主题中functions.php
找到与此类似的代码。
`添加\\u操作(\'after\\u setup\\u theme\',\'setup\');函数setup(){//。。。
add_theme_support( \'post-thumbnails\' ); // This feature enables post-thumbnail support for a theme
add_image_size( \'header\', 600, 200, true ); // header image
add_image_size( \'custom-size1\', 400, 200 ); // 400 pixel wide and 200 pixel tall, resized proportionally
add_image_size( \'custom-size2\', 400, 200, true );// 400 pixel wide and 200 pixel tall, cropped
// ...
}`
或搜索add_image_size
或post-image-cover
在主题文件夹中查找(&;去除