Created
April 24, 2017 14:40
-
-
Save yanknudtskov/5fb41d0e7d7479feba8c86b12605b93a to your computer and use it in GitHub Desktop.
Google Fonts for WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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