Created
May 7, 2015 20:52
-
-
Save mikejolley/14d00bafd9d360212cd2 to your computer and use it in GitHub Desktop.
Dequeue jquery ui in admin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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