Skip to content

Instantly share code, notes, and snippets.

@BetoFrega
Created November 5, 2011 02:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save BetoFrega/1341027 to your computer and use it in GitHub Desktop.
Save BetoFrega/1341027 to your computer and use it in GitHub Desktop.
Replace Wordpress' jQuery with Google's
//Making jQuery Google API
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js', false, '1.6.4');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment