Skip to content

Instantly share code, notes, and snippets.

@pmgllc
Last active August 29, 2015 13:57
Show Gist options
  • Save pmgllc/9552896 to your computer and use it in GitHub Desktop.
Save pmgllc/9552896 to your computer and use it in GitHub Desktop.
Google Fonts for Genesis framework
<?php
//* Load Google fonts
add_action( 'wp_enqueue_scripts', 'pmg_load_google_fonts' );
function pmg_load_google_fonts() {
wp_enqueue_style(
'google-fonts',
'http://fonts.googleapis.com/css?family=Merriweather|Open+Sans',
array(),
CHILD_THEME_VERSION
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment