Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Created October 4, 2012 18:51
Show Gist options
  • Save rosshanney/3835619 to your computer and use it in GitHub Desktop.
Save rosshanney/3835619 to your computer and use it in GitHub Desktop.
Load jQuery 1.8.23 rather than 1.8.20
<?php
/*
Plugin name: GCE newer jQuery UI
*/
function gce_newer_jquery_ui() {
wp_deregister_script( 'jquery-ui-core' );
wp_register_script( 'jquery-ui-core', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js' );
wp_enqueue_script( 'jquery-ui-core' );
}
add_action( 'init', 'gce_newer_jquery_ui' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment