Last active
June 17, 2020 20:05
-
-
Save kaelri/7d068d4274d5e589adf84b66362a1340 to your computer and use it in GitHub Desktop.
Upgrade jQuery in WordPress #wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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