Skip to content

Instantly share code, notes, and snippets.

@Herm71
Last active June 13, 2016 18:31
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 Herm71/916bc9481f62845ddc97248a871cab4a to your computer and use it in GitHub Desktop.
Save Herm71/916bc9481f62845ddc97248a871cab4a to your computer and use it in GitHub Desktop.
Replace WordPress jQuery with Google Hosted Libraries
/**
* Replace WordPress jQuery with Google Hosted Libraries
* @author Blackbird Consulting/Jason Chafin
* @link https://gist.github.com/Herm71/916bc9481f62845ddc97248a871cab4a
*/
function bb_modify_jquery(){
if (!is_admin()){
// deregister WordPress JQuery
wp_deregister_script('jquery');
//register and enqueue jquery
wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js', null, true); // register the external file
wp_enqueue_script('jquery'); // enqueue the external file
}
}
add_action('init','bb_modify_jquery');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment