lisaleague
12/26/2012 - 4:43 PM

Enqueue Google Fonts.

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