Created
February 7, 2018 10:40
-
-
Save Shininglow/8f548e52e87e34d57923f1d45ceb7f2e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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