Last active
December 11, 2015 11:59
-
-
Save rosshanney/4597837 to your computer and use it in GitHub Desktop.
Replace old version of jQuery UI with latest version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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