Created
January 27, 2016 15:24
-
-
Save sidonaldson/cd77e362e3482d50a10f to your computer and use it in GitHub Desktop.
Remove Open-Sans from Wordpress 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
function replace_admin_open_sans() { | |
wp_deregister_style( 'open-sans' ); | |
wp_register_style( 'open-sans', false ); | |
wp_enqueue_style( 'open-sans', '' ); | |
} | |
add_action( 'init', replace_admin_open_sans'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment