Skip to content

Instantly share code, notes, and snippets.

@ARCHTKT
Created March 10, 2020 22:13
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 ARCHTKT/0e8a3c26ca5fc626677356698987dc20 to your computer and use it in GitHub Desktop.
Save ARCHTKT/0e8a3c26ca5fc626677356698987dc20 to your computer and use it in GitHub Desktop.
Modify Storefront Google's fonts
<?php /* No copiar esta linea */
function aspro_google_font_families( $family ) {
$family = array();
$family['mali'] = 'Mali:700&display=swap';
$family['quicksand'] = 'Quicksand&display=swap&subset=latin-ext';
return $family;
}
add_filter( 'storefront_google_font_families', 'aspro_google_font_families' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment