Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active May 24, 2018 16:18
Show Gist options
  • Select an option

  • Save landbryo/acad74f7d3920adc7d12be106d59a245 to your computer and use it in GitHub Desktop.

Select an option

Save landbryo/acad74f7d3920adc7d12be106d59a245 to your computer and use it in GitHub Desktop.
Enqueue Google Font via functions.php
/////////////////////////
// ENQUEUE GOOGLE FONT //
/////////////////////////
add_action('wp_enqueue_scripts', 'custom_google_fonts');
function keokee_google_fonts() {
wp_enqueue_style( 'keokee_google_fonts', '//fonts.googleapis.com/css?family=Montserrat:400,700' );
}
//////////////////////////
// ENQUEUE GOOGLE FONTS //
//////////////////////////
function google_fonts() {
$query_args = array(
'family' => 'Open+Sans:400,700|Oswald:700'
'subset' => 'latin,latin-ext'
);
wp_register_style( 'google_fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null );
}
add_action('wp_enqueue_scripts', 'google_fonts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment