Skip to content

Instantly share code, notes, and snippets.

@danielmcclure
Created October 28, 2014 08:47
Show Gist options
  • Save danielmcclure/d20b961baae96bdfe173 to your computer and use it in GitHub Desktop.
Save danielmcclure/d20b961baae96bdfe173 to your computer and use it in GitHub Desktop.
Add Google Fonts to WordPress
/**
* 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