-
-
Save cristiancorreau/b59695e4f94d702b703b4afd7903858b to your computer and use it in GitHub Desktop.
Remove Google Fonts from Divi
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
<?php | |
function wpse_dequeue_google_fonts() { | |
wp_dequeue_style( 'divi-fonts' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'wpse_dequeue_google_fonts', 20 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment