Skip to content

Instantly share code, notes, and snippets.

@evemilano
Created June 25, 2018 19:21
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 evemilano/33b7200549fdb65329e45b170b3eac4d to your computer and use it in GitHub Desktop.
Save evemilano/33b7200549fdb65329e45b170b3eac4d to your computer and use it in GitHub Desktop.
WordPress with jQuery Google CDN
//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');
@evemilano
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment