25% off ProSNIPC25OFF

Disable jQuery Migrate

Removes the jquery-migrate script dependency from the jQuery registration to reduce frontend JavaScript payload.

PHPby SnipCraft
php
<?php
add_action( 'wp_default_scripts', function ( $scripts ) {
    if ( ! is_admin() && isset( $scripts->registered['jquery'] ) ) {
        $jquery = $scripts->registered['jquery'];
        if ( $jquery->deps ) {
            $jquery->deps = array_diff( $jquery->deps, array( 'jquery-migrate' ) );
        }
    }
} );
#frontend#javascript#jquery#performance