Skip to content

Instantly share code, notes, and snippets.

@VanLuda
Last active September 29, 2016 03:06
Show Gist options
  • Save VanLuda/b6564ae8b0c945edf2e3e6375bc855c3 to your computer and use it in GitHub Desktop.
Save VanLuda/b6564ae8b0c945edf2e3e6375bc855c3 to your computer and use it in GitHub Desktop.
// Use Google Hosted jQuery
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js', false, '1.12.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