Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Last active June 12, 2018 03:23
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 Kaiderella/34fe5adb6d077e3198a92ff21c3d583c to your computer and use it in GitHub Desktop.
Save Kaiderella/34fe5adb6d077e3198a92ff21c3d583c to your computer and use it in GitHub Desktop.
Remove jQuery Migrate
function remove_jquery_migrate( $scripts ) {
if ( ! is_admin() && isset( $scripts->registered['jquery'] ) ) {
$script = $scripts->registered['jquery'];
if ( $script->deps ) {
$script->deps = array_diff( $script->deps, array( 'jquery-migrate' ) );
}
}
}
add_action( 'wp_default_scripts', 'remove_jquery_migrate' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment