Skip to content

Instantly share code, notes, and snippets.

@zephyrmike
Last active August 5, 2022 21:39
Show Gist options
  • Save zephyrmike/13ec10f3f018cd97817155f7c66594fa to your computer and use it in GitHub Desktop.
Save zephyrmike/13ec10f3f018cd97817155f7c66594fa to your computer and use it in GitHub Desktop.
Add Fonts to GeneratePress Customizer
add_filter( 'generate_typography_default_fonts', 'tu_add_typekit_fonts' );
function tu_add_typekit_fonts( $fonts ) {
$fonts[] = 'font-name';
return $fonts;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment