Skip to content

Instantly share code, notes, and snippets.

@AkramiPro
Last active August 25, 2021 14:01
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 AkramiPro/3ec3ce149504630c8e83cbb63939ce9d to your computer and use it in GitHub Desktop.
Save AkramiPro/3ec3ce149504630c8e83cbb63939ce9d to your computer and use it in GitHub Desktop.
Change Wordpress jQuery AND jQuery Migrate Version
<?php
/**
* Change Wordpress jQuery AND jQuery Migrate Version
*/
add_action( 'init', function () {
// jQuery
$core = wp_scripts()->registered['jquery-core'];
$core->ver = '1.12.4';
$core->src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/{$core->ver}/jquery.min.js";
// jQuery Migrate
$migrate = wp_scripts()->registered['jquery-migrate'];
$migrate->ver = '1.4.1';
$migrate->src = "https://cdnjs.cloudflare.com/ajax/libs/jquery-migrate/{$migrate->ver}/jquery-migrate.min.js";
// Register
$jquery = wp_scripts()->registered['jquery'];
$jquery->ver = $core->ver;
$jquery->deps = [ 'jquery-core', 'jquery-migrate' ];
}, 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment