Skip to content

Instantly share code, notes, and snippets.

@scottparry
Created February 21, 2018 07:04
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save scottparry/be66973877ea42b8531a01f5a23580b9 to your computer and use it in GitHub Desktop.
Save scottparry/be66973877ea42b8531a01f5a23580b9 to your computer and use it in GitHub Desktop.
Enqueue Google fonts in WordPress theme
/**
* Enqueue custom fonts using protocol relative URL.
*
* Syntax: wp_enqueue_style( $handle, $src, $deps, $ver, $media );
* Ensure $handle is unique to prevent conflicts with plugins
*
* Note(s): The pipe (|) operator is used to load multiple typefaces in a single call. We also only load the weights we want * by comma seperating them, instead of loading every available weight.
*/
function theme_prefix_fonts()
{
wp_enqueue_style( 'theme-prefix-fonts', "//fonts.googleapis.com/css?family=Lora:400,700|Inconsolata:700", '', '1.0.0', 'screen' );
}
add_action( 'wp_enqueue_scripts', 'theme_prefix_fonts' );
@scottparry
Copy link
Author

@wp-expert the TwentySixteen way is fine too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment