Skip to content

Instantly share code, notes, and snippets.

@denishvachhani
Last active December 18, 2015 08:49
Show Gist options
  • Save denishvachhani/5756692 to your computer and use it in GitHub Desktop.
Save denishvachhani/5756692 to your computer and use it in GitHub Desktop.
Use Google font in Genesis Child Theme
<?php
//* Load Marmelad Google fonts
add_action( 'wp_enqueue_scripts', 'custom_load_google_fonts' );
function custom_load_google_fonts() {
wp_enqueue_style( 'google-font', 'http://fonts.googleapis.com/css?family=Marmelad', array(), PARENT_THEME_VERSION );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment