Skip to content

Instantly share code, notes, and snippets.

@kaelri
Last active June 17, 2020 20:05
Show Gist options
  • Select an option

  • Save kaelri/7d068d4274d5e589adf84b66362a1340 to your computer and use it in GitHub Desktop.

Select an option

Save kaelri/7d068d4274d5e589adf84b66362a1340 to your computer and use it in GitHub Desktop.
Upgrade jQuery in WordPress #wordpress
<?php
add_action( 'wp_enqueue_scripts', 'update_jquery' );
function update_jquery() {
wp_deregister_script ( 'jquery' );
wp_register_script ( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js', [], '3.5.1' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment