Mika MAtikainen

Apr 15, 2020 · 4 min read

How to Remove jQuery Migrate in WordPress?

function wps_remove_jquery_migrate( $scripts ) 
{
	if ( !is_admin() && !empty( $scripts->registered['jquery'] ) ) 
    {
		$scripts->registered['jquery']->deps = array_diff( $scripts->registered['jquery']->deps, ['jquery-migrate'] );
	}
}
add_action('wp_default_scripts', 'wps_remove_jquery_migrate');

Subscribe To Our Newsletter

Join our mailing list to receive the latest news and updates from our team.

You have Successfully Subscribed!

Share This