Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Last active December 11, 2015 11:59
Show Gist options
  • Save rosshanney/4597837 to your computer and use it in GitHub Desktop.
Save rosshanney/4597837 to your computer and use it in GitHub Desktop.
Replace old version of jQuery UI with latest version
<?php
/*
Plugin name: Replace old version of jQuery UI with latest version
*/
function gce_replace_jquery_ui() {
wp_deregister_script( 'jquery-ui' );
wp_register_script( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js', array( 'jquery' ) );
wp_enqueue_script( 'jquery-ui' );
}
add_action( 'init', 'gce_replace_jquery_ui', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment