Created
July 9, 2018 05:16
-
-
Save sumnermic/324c476511e5c02ff9c12c110adb0869 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Google Font for the Theme | |
* @link https://www.smnr.co/?p=1499 | |
*/ | |
function google_font_style() { | |
wp_enqueue_style( 'google-fonts', '__YOUR_FONT_URL_HERE__' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'google_font_style' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment