Skip to content

Instantly share code, notes, and snippets.

@whyisjake
Created September 10, 2012 17:15
Show Gist options
  • Save whyisjake/3692234 to your computer and use it in GitHub Desktop.
Save whyisjake/3692234 to your computer and use it in GitHub Desktop.
Remove jQuery UI
<?php
//Add this to your functions.php
function remove_jquery_ui() {
if (is_page('slug-of-page')) {
wp_deregister_script( 'jquery-ui-core' );
}
}
add_action('wp_enqueue_scripts', 'remove_jquery_ui');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment