Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/2d037a5a7341ffc67c6af1a056b54e34 to your computer and use it in GitHub Desktop.
Save generatepress/2d037a5a7341ffc67c6af1a056b54e34 to your computer and use it in GitHub Desktop.
Remove Google Fonts from the Customizer
add_action( 'admin_init', 'tu_remove_google_fonts' );
function tu_remove_google_fonts() {
add_filter( 'generate_google_fonts_array', '__return_false' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment