25% off ProSNIPC25OFF

Disable WordPress Big Image Size Threshold

Prevents WordPress from down-scaling large uploaded images by disabling the 2560px big-image threshold.

PHPby SnipCraft
php
<?php
if ( ! function_exists( 'scseed_disable_big_image_threshold' ) ) {
    function scseed_disable_big_image_threshold() {
        add_filter( 'big_image_size_threshold', '__return_false' );
    }
    add_action( 'init', 'scseed_disable_big_image_threshold' );
}
#images#media#performance#upload