Created
October 28, 2014 08:47
-
-
Save danielmcclure/d20b961baae96bdfe173 to your computer and use it in GitHub Desktop.
Add Google Fonts to WordPress
This file contains 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
/** | |
* Additional Styles | |
* @since 1.0.0 | |
*/ | |
function font_styles() { | |
if ( !is_admin() ) { | |
// register styles | |
wp_register_style('googlefonts', 'http://fonts.googleapis.com/css?family=Oswald:400,300,700', array(), false, 'all'); | |
// enqueue styles | |
wp_enqueue_style('googlefonts'); | |
} | |
} | |
add_action('wp_enqueue_scripts', 'font_styles'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment