Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created June 14, 2013 22:10
Show Gist options
  • Save wpspeak/5785683 to your computer and use it in GitHub Desktop.
Save wpspeak/5785683 to your computer and use it in GitHub Desktop.
Load Google Custom Fonts
<?php
//* Do NOT include the opening php tag
//* Load Lato and Merriweather Google fonts
add_action( 'wp_enqueue_scripts', 'custom_load_google_fonts' );
function custom_load_google_fonts() {
wp_enqueue_style( 'google-font', 'http://fonts.googleapis.com/css?family=Lato:300,400|Merriweather:300,400', array(), PARENT_THEME_VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment