Skip to content

Instantly share code, notes, and snippets.

@sebgates
Created April 13, 2015 19:38
Show Gist options
  • Save sebgates/33301fe019e7bbc6eafe to your computer and use it in GitHub Desktop.
Save sebgates/33301fe019e7bbc6eafe to your computer and use it in GitHub Desktop.
function modify_jquery() {
if ( !is_admin() ) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js', false, '1.8.1' );
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