Created
June 25, 2018 19:21
-
-
Save evemilano/33b7200549fdb65329e45b170b3eac4d to your computer and use it in GitHub Desktop.
WordPress with jQuery Google CDN
This file contains 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
//Making jQuery Google API | |
function replace_jquery() { | |
wp_deregister_script('jquery'); | |
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js', false, '1.11.3'); | |
wp_enqueue_script('jquery'); | |
} | |
add_action('wp_enqueue_scripts', 'replace_jquery'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Leggi la guida: https://www.evemilano.com/conviene-usare-google-come-cdn-jquery/