Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created April 11, 2014 16:01
Show Gist options
  • Save ingozoell/10480252 to your computer and use it in GitHub Desktop.
Save ingozoell/10480252 to your computer and use it in GitHub Desktop.
/**
* Additional Styles
* @since 1.0.0
*/
function child_styles() {
if ( !is_admin() ) {
// register styles
wp_register_style('googlefont-oswald', 'http://fonts.googleapis.com/css?family=Oswald:400,300,700', array(), false, 'all');
// enqueue styles
wp_enqueue_style('googlefont-oswald');
}
}
add_action('wp_enqueue_scripts', 'child_styles');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment