Skip to main content
Login Join
Snippet · PHP

Remove Default jQuery and jQuery Migrate Scripts

Shared by Nazim Husain · April 27, 2026

24 views
Back to Snippets

If your website has no jQuery dependency, you can remove these two scripts to improve its performance.

add_action( 'wp_default_scripts', function( $scripts ) {
    if ( ! is_admin() && isset( $scripts->registered['jquery'] ) ) {
        $script = $scripts->registered['jquery'];

        if ( ! empty( $script->deps ) ) {
            $script->deps = array_diff( $script->deps, [ 'jquery-migrate' ] );
        }
    }
});
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments