Skip to content

Instantly share code, notes, and snippets.

@SirDarcanos
Created April 22, 2016 12:49
Show Gist options
  • Save SirDarcanos/4726563e9f023b639e177bd1edc82f77 to your computer and use it in GitHub Desktop.
Save SirDarcanos/4726563e9f023b639e177bd1edc82f77 to your computer and use it in GitHub Desktop.
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
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