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/70a67d226b9954cc4945ada391ba215b to your computer and use it in GitHub Desktop.
Save generatepress/70a67d226b9954cc4945ada391ba215b to your computer and use it in GitHub Desktop.
Add Alef into the Google fonts list
add_filter( 'generate_typography_customize_list','tu_add_google_fonts' );
function tu_add_google_fonts( $fonts ) {
$fonts[ 'alef' ] = array( 'name' => 'Alef' );
return $fonts;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment