Skip to content

Instantly share code, notes, and snippets.

@primitiveshaun
Created August 21, 2019 08:04
Show Gist options
  • Save primitiveshaun/7bf2232771f74a68710da9148a534a88 to your computer and use it in GitHub Desktop.
Save primitiveshaun/7bf2232771f74a68710da9148a534a88 to your computer and use it in GitHub Desktop.
Enqueue Google Fonts.
<?php
//* Do NOT include the opening php tag
//* Load Lato and Merriweather Google fonts
add_action( 'wp_enqueue_scripts', 'bg_load_google_fonts' );
function bg_load_google_fonts() {
wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Lato:300,700|Merriweather:300,700', array(), CHILD_THEME_VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment