RM
да, такое
Changing The Size Of The Scaled Image
If 2560 pixels is not big enough for your needs, there is a filter you can add to your functions file to create a larger scaled size of the image.
Copy the below function into your functions.php file and it will modify your image size to adjust to 4096 pixels instead of the default 2560 pixels.
Just change the 4096 pixels to whatever size you want the scaled version to be – you can make it smaller too!
function td_big_image_size_threshold( $threshold, $imagesize, $file, $attachment_id ) {
return 4096;
}
add_filter( 'big_image_size_threshold', 'td_big_image_size_threshold', 10, 4 );
You can see in the image below our scaled image is now 4096 pixels instead of the default 2560 pixels.