Skip to content

Instantly share code, notes, and snippets.

@Narayon
Forked from jennimckinnon/functions.php
Last active April 8, 2018 02:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Narayon/ecfe2abecf76debe9937 to your computer and use it in GitHub Desktop.
Save Narayon/ecfe2abecf76debe9937 to your computer and use it in GitHub Desktop.
Wordpress: Add Google Font
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