我不知道为什么,但现在,Wordpress在每个新上传的图像末尾添加了一个后缀“-scaled”。
并且,它没有保留原始图像链接,而是将其更改为“-缩放”版本:
我发现凶手在
/wp-admin/includes/image.php
其中包括:
if ( ! is_wp_error( $resized ) ) {
// Append "-scaled" to the image file name. It will look like "my_image-scaled.jpg".
// This doesn\'t affect the sub-sizes names as they are generated from the original image (for best quality).
$saved = $editor->save( $editor->generate_filename( \'scaled\' ) );
如何摆脱这种行为?