Last active
September 4, 2017 23:17
-
-
Save brianleejackson/cc06c487f3d8c6dc0d5cee04bbccfe7d to your computer and use it in GitHub Desktop.
gp-disable-google-fonts
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_action( 'wp_enqueue_scripts','tu_remove_google_fonts', 10 ); | |
function tu_remove_google_fonts() { | |
wp_dequeue_style( 'generate-fonts' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment