Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active December 25, 2021 06:41
Show Gist options
  • Save landbryo/206d1b4c6e462295cf8e7f4e381097d3 to your computer and use it in GitHub Desktop.
Save landbryo/206d1b4c6e462295cf8e7f4e381097d3 to your computer and use it in GitHub Desktop.
Adds content font to be used in Enfold options.
////////////////////////////////////
// ADD NEW GOOGLE FONTS TO ENFOLD //
////////////////////////////////////
add_filter( 'avf_google_content_font', 'add_content_font');
function add_content_font($fonts)
{
$fonts['Crimson Text'] = 'Crimson Text:400,400i,700,700i';
return $fonts;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment