Last active
January 31, 2024 17:46
-
-
Save jennimckinnon/a65d307e9a3fcf8faa5e to your computer and use it in GitHub Desktop.
Revisions
-
jennimckinnon revised this gist
Mar 3, 2015 . 1 changed file with 9 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,9 @@ 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'); -
jennimckinnon created this gist
Mar 3, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ function load_fonts() { wp_register_style('et-googleFonts', 'place Google link here'); wp_enqueue_style( 'et-googleFonts'); } add_action('wp_print_styles', 'load_fonts');