Skip to content

Instantly share code, notes, and snippets.

@guydumais
Last active April 30, 2020 07:07
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guydumais/a0091e7b1dcec895ad0631b815b21f99 to your computer and use it in GitHub Desktop.
Save guydumais/a0091e7b1dcec895ad0631b815b21f99 to your computer and use it in GitHub Desktop.
WordPress ➧ Disable jQuery Migrate in WordPress
<?php
/**
* Disable jQuery Migrate in WordPress.
*
* @author Guy Dumais.
* @link https://en.guydumais.digital/disable-jquery-migrate-in-wordpress/
*/
add_filter( 'wp_default_scripts', $af = static function( &$scripts) {
if(!is_admin()) {
$scripts->remove( 'jquery');
$scripts->add( 'jquery', false, array( 'jquery-core' ), '1.12.4' );
}
}, PHP_INT_MAX );
unset( $af );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment