Remove Open-Sans font from Wordpress
function remove_open_sans() { | |
wp_deregister_style( 'open-sans' ); | |
wp_register_style( 'open-sans', false ); | |
} | |
add_action( 'wp_print_styles', 'remove_open_sans' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment