Skip to content

Instantly share code, notes, and snippets.

@cjkoepke
Last active March 28, 2016 04:24
Show Gist options
  • Save cjkoepke/bc2df0509efdd319224e to your computer and use it in GitHub Desktop.
Save cjkoepke/bc2df0509efdd319224e to your computer and use it in GitHub Desktop.
Add google fonts to your theme.
<?php
//* Do NOT copy the opening PHP tag
//* Add Google Fonts to our header
add_action( 'wp_enqueue_scripts', 'ck_load_google_fonts' );
function ck_load_google_fonts() {
wp_enqueue_style( 'ck-google-fonts', '//fonts.googleapis.com/css?family=Open+Sans', array(), CHILD_THEME_VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment