Created
July 10, 2019 14:34
-
-
Save feastdesignco/1e08876b906871ad67fe7838fe3a8cd8 to your computer and use it in GitHub Desktop.
my_custom_fonts_123
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
add_action( 'wp_enqueue_scripts', 'my_custom_fonts_123' ); | |
function my_custom_fonts_123() { | |
wp_enqueue_style( | |
'custom-google-fonts', | |
'//fonts.googleapis.com/css?family=Raleway', | |
array(), | |
CHILD_THEME_VERSION | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment