Created
February 21, 2018 07:04
-
-
Save scottparry/be66973877ea42b8531a01f5a23580b9 to your computer and use it in GitHub Desktop.
Enqueue Google fonts in WordPress theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Scottparry,
I always follow the WordPress twenty sixteen theme google fonts including system. now I should leave that?
Best Regards
Abdullah AL Imran