Skip to content

Instantly share code, notes, and snippets.

@freezvd
Forked from jamiemitchell/functions.php
Last active August 29, 2015 14:06
Show Gist options
  • Save freezvd/b019ce011143cc861ea5 to your computer and use it in GitHub Desktop.
Save freezvd/b019ce011143cc861ea5 to your computer and use it in GitHub Desktop.
<?php
/* Enqueue google fonts
------------------------------------------------------------ */
add_action( 'wp_enqueue_scripts', 'genesis_sample_google_fonts' );
function genesis_sample_google_fonts() {
wp_enqueue_style( 'google-font-raleway', '//fonts.googleapis.com/css?family=Raleway:400,700,800,900', array(), CHILD_THEME_VERSION );
wp_enqueue_style( 'google-font-karla', '//fonts.googleapis.com/css?family=Karla:400,700', array(), CHILD_THEME_VERSION );
wp_enqueue_style( 'google-font-lato', '//fonts.googleapis.com/css?family=Lato:400,700', array(), CHILD_THEME_VERSION );
wp_enqueue_style( 'google-font-sans', '//fonts.googleapis.com/css?family=Open+Sans:400,700', array(), CHILD_THEME_VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment