Skip to content

Instantly share code, notes, and snippets.

@itsHall
Last active October 7, 2021 14:07
Show Gist options
  • Save itsHall/f215277fd7c2d36d61ab5e93d17a71c7 to your computer and use it in GitHub Desktop.
Save itsHall/f215277fd7c2d36d61ab5e93d17a71c7 to your computer and use it in GitHub Desktop.
Removes WP Injected Jquery (jquery + migrate)
<?php
//------------------//
// Remove WP Jquery //
//------------------//
function change_default_jquery( ){
wp_dequeue_script( 'jquery');
wp_deregister_script( 'jquery');
}
add_filter( 'wp_enqueue_scripts', 'change_default_jquery', PHP_INT_MAX );
@itsHall
Copy link
Author

itsHall commented Feb 11, 2021

If switching to jQuery CDN, use this instead: https://gist.github.com/itsHall/bdfd03dfa981a1e3af1ddd1e55f2d2c4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment