This snippet disables WordPress automatic large image scaling by removing the big image size threshold. It prevents WordPress from generating resized “-scaled” versions of uploaded images, allowing original high-resolution images to remain unchanged.
// Filter function to prevent wp resize for big size image
add_filter( 'big_image_size_threshold', '__return_false' );