Created
December 1, 2012 11:17
-
-
Save rosshanney/4181562 to your computer and use it in GitHub Desktop.
Loads latest version of jQuery UI to replace old version loaded by "Total Control HTML5 Audio Player Basic"
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: Load newer version of jQuery UI | |
*/ | |
function gce_load_newer_jquery_ui() { | |
wp_deregister_script( 'jquery-ui-base' ); | |
wp_register_script( 'jquery-ui-base', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js' ); | |
wp_enqueue_script( 'jquery-ui-base' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'gce_load_newer_jquery_ui', 50 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment