Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/3483a8fd6b46aa2d3f6e4ee090c7db58 to your computer and use it in GitHub Desktop.
Save generatepress/3483a8fd6b46aa2d3f6e4ee090c7db58 to your computer and use it in GitHub Desktop.
Add a Google font to the request to Google
add_filter( 'generate_typography_google_fonts', 'tu_add_google_font_request' );
function tu_add_google_font_request( $fonts ) {
return $fonts . '|Amatic+SC';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment