Skip to content

Instantly share code, notes, and snippets.

@tammalee
Created April 8, 2017 18:52
Show Gist options
  • Save tammalee/182f78c559b9b4ac2fbd2d88d3736c64 to your computer and use it in GitHub Desktop.
Save tammalee/182f78c559b9b4ac2fbd2d88d3736c64 to your computer and use it in GitHub Desktop.
[WP] Enqueue Google Fonts
<?
/**
* Enqueues Google Fonts
* Original source: http://webdesignfromscratch.com/wordpress/using-google-web-fonts-with-wordpress-the-right-way/
* @return [type] [description]
*/
function load_fonts() {
wp_register_style('googleFonts', 'https://fonts.googleapis.com/css?family=Montserrat|Open+Sans');
wp_enqueue_style( 'googleFonts');
}
add_action('wp_print_styles', 'load_fonts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment