Created
July 19, 2013 08:28
-
-
Save rosshanney/6037621 to your computer and use it in GitHub Desktop.
Update jQuery UI
This file contains hidden or 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: 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