Skip to content

Instantly share code, notes, and snippets.

@INDIAN2020
Forked from yanknudtskov/google-fonts.php
Created June 18, 2018 06:25
Show Gist options
  • Save INDIAN2020/06b43fca1813b96086c76a2be5cac5b2 to your computer and use it in GitHub Desktop.
Save INDIAN2020/06b43fca1813b96086c76a2be5cac5b2 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