Skip to content

Instantly share code, notes, and snippets.

@someguy9
Created March 17, 2020 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save someguy9/de5de0694647e40c17b399f60cc9dc4a to your computer and use it in GitHub Desktop.
Save someguy9/de5de0694647e40c17b399f60cc9dc4a to your computer and use it in GitHub Desktop.
Remove jQuery migrate from WordPress
<?php
//Remove jQuery migrate
function smartwp_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', 'smartwp_remove_jquery_migrate');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment