Skip to content

Instantly share code, notes, and snippets.

@ramseyp
Created January 17, 2013 05:58
Show Gist options
  • Save ramseyp/4554015 to your computer and use it in GitHub Desktop.
Save ramseyp/4554015 to your computer and use it in GitHub Desktop.
Load Google Webfonts into a Genesis Child Theme using the functions.php file
/**
*
* Add Google Webfonts
*/
add_action('wp_head','s25_webfont_load');
function s25_webfont_load() {
echo '<link href="//fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic|Archivo+Black" rel="stylesheet" type="text/css" />';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment