Skip to content

Instantly share code, notes, and snippets.

@joelbowen
Last active December 16, 2015 14:19
Show Gist options
  • Save joelbowen/5447822 to your computer and use it in GitHub Desktop.
Save joelbowen/5447822 to your computer and use it in GitHub Desktop.
Enqueue Google Fonts Properly in Wordpress
//Google Fonts Include
function google_fonts_css() {
wp_register_style( 'google_fonts_ptserif', 'http://fonts.googleapis.com/css?family=PT+Serif+Caption:400,400italic' );
wp_enqueue_style( 'google_fonts_ptserif' );
}
//Activate Custom Style Sheets
add_action ('wp_print_styles', 'google_fonts_css', 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment