Your cart is currently empty!
How to stop scaling images in WordPress
To stop the function that automatically scales images with a resolution of 2560px or higher when uploading images in WordPress, add the following to functions.php.
//Disable Scaling Of Image
add_filter( 'big_image_size_threshold', '__return_false' );
Leave a Reply