Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Created July 19, 2013 08:28
Show Gist options
  • Save rosshanney/6037621 to your computer and use it in GitHub Desktop.
Save rosshanney/6037621 to your computer and use it in GitHub Desktop.
Update jQuery UI
<?php
/*
Plugin name: Update jQuery UI
*/
function gce_update_jquery_ui() {
wp_deregister_script( 'jquery-ui' );
wp_enqueue_script( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js', array( 'jquery' ), null, true );
}
add_action( 'wp_enqueue_scripts', 'gce_update_jquery_ui', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment