Skip to content

Instantly share code, notes, and snippets.

@spigists
Created June 10, 2013 21:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spigists/5752713 to your computer and use it in GitHub Desktop.
Save spigists/5752713 to your computer and use it in GitHub Desktop.
Use Google's CDN version of jQuery
/**
* Custom functions
*/
function jquery_enqueue() {
wp_deregister_script('jquery');
wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js", false, null);
wp_enqueue_script('jquery');
}
if (!is_admin()) add_action("wp_enqueue_scripts", "jquery_enqueue", 11);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment