-
-
Save DavidEngland/3ce1c6075d220ada692b0f0b0f5b25fd to your computer and use it in GitHub Desktop.
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
| 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