lmartins
10/31/2014 - 10:00 AM

Genesis load Google Fonts

Genesis load Google Fonts

<?php
//* Do NOT include the opening php tag

//* 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 );
}