Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created May 7, 2015 20:52
Show Gist options
  • Save mikejolley/14d00bafd9d360212cd2 to your computer and use it in GitHub Desktop.
Save mikejolley/14d00bafd9d360212cd2 to your computer and use it in GitHub Desktop.
Dequeue jquery ui in admin
add_filter( 'admin_enqueue_scripts', 'unhook_jm_jquery_ui', 20 );
function unhook_jm_jquery_ui() {
wp_dequeue_style( 'jquery-ui' );
wp_dequeue_style( 'jquery-ui-style' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment