mattlawck of StudioPress
8/3/2018 - 4:03 PM

Load Google Fonts.

Load Google Fonts.

/*
Imports
---------------------------------------------------------------------------------------------------- */

@import url(//fonts.googleapis.com/css?family=Lato:300,700);
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Enqueue Lato Google font
add_action( 'wp_enqueue_scripts', 'sp_load_google_fonts' );
function sp_load_google_fonts() {
	wp_enqueue_style( 'google-font-lato', '//fonts.googleapis.com/css?family=Lato:300,700', array(), CHILD_THEME_VERSION );
}