Skip to content

Instantly share code, notes, and snippets.

@xentek
Created December 13, 2010 04:01
Show Gist options
  • Save xentek/738634 to your computer and use it in GitHub Desktop.
Save xentek/738634 to your computer and use it in GitHub Desktop.
upgrade jquery-ui (or any 'core' script) in WordPress with this handy idiom
<?php
if ( !is_admin() ):
wp_deregister_script('jquery-ui');
wp_enqueue_script('jquery-ui', get_bloginfo('stylesheet_directory') . '/js/jquery.ui.core.min.js', array('jquery'), '1.8.6');
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment