Created
January 17, 2013 05:58
-
-
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
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 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