Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Created December 1, 2012 11:17
Show Gist options
  • Save rosshanney/4181562 to your computer and use it in GitHub Desktop.
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"
<?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