Skip to content

Instantly share code, notes, and snippets.

@rolka
Created September 5, 2013 10:28
Show Gist options
  • Save rolka/6448454 to your computer and use it in GitHub Desktop.
Save rolka/6448454 to your computer and use it in GitHub Desktop.
wp: include latest jQuery in WP
if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11);
function my_jquery_enqueue() {
wp_deregister_script('jquery');
wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://code.jquery.com/jquery-2.0.3.min.js", false, null);
wp_enqueue_script('jquery');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment