Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Created April 24, 2017 14:40
Show Gist options
  • Save yanknudtskov/5fb41d0e7d7479feba8c86b12605b93a to your computer and use it in GitHub Desktop.
Save yanknudtskov/5fb41d0e7d7479feba8c86b12605b93a to your computer and use it in GitHub Desktop.
Google Fonts for WordPress
<?php
function yanco_scripts() {
if( !is_admin() ) {
$query_args = array(
'family' => 'Lora:400,700,400italic,700italic|Droid+Sans:400,700',
'subset' => 'latin,latin-ext',
);
wp_register_style( 'yanco-google-fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null );
wp_enqueue_style('yanco-google-fonts' );
}
}
add_action( 'wp_enqueue_scripts', 'yanco_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment