Skip to content

Instantly share code, notes, and snippets.

@CoachBirgit
Created January 13, 2016 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CoachBirgit/70b9f7fbea16e295dce5 to your computer and use it in GitHub Desktop.
Save CoachBirgit/70b9f7fbea16e295dce5 to your computer and use it in GitHub Desktop.
Load Google Fonts with the Genesis Framework.
<?php
//* Do NOT include the opening php tag
//* Load Google Fonts
add_action( 'wp_enqueue_scripts', 'bg_load_google_fonts' );
function bg_load_google_fonts() {
wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Lato:400,700|Neuton:400', array(), CHILD_THEME_VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment