Skip to content

Instantly share code, notes, and snippets.

@Shininglow
Created February 7, 2018 10:40
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 Shininglow/8f548e52e87e34d57923f1d45ceb7f2e to your computer and use it in GitHub Desktop.
Save Shininglow/8f548e52e87e34d57923f1d45ceb7f2e to your computer and use it in GitHub Desktop.
add_filter( 'tm_google_fonts', '_jx_add_google_fonts' );
function _jx_add_google_fonts( $fonts ) {
$fonts['Spectral'] = array(
'styles' => '300italic,400italic,600italic,700italic,800italic,400,300,600,700,800',
'character_set' => 'latin,vietnamese,latin-ext',
'type' => 'serif',
);
return $fonts;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment