Last active
November 4, 2019 12:04
-
-
Save samkent/f99174c5504a371e57bb48dcb8948f7b to your computer and use it in GitHub Desktop.
Add Google Fonts to WordPress
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
<?php | |
/** | |
* Add Google Fonts to WordPress | |
* Add this to your functions.php file | |
*/ | |
function add_google_fonts() { | |
wp_enqueue_style( 'textdomain-add-google-fonts', 'https://fonts.googleapis.com/css?family=Prata&display=swap', false ); | |
} | |
add_action( 'wp_enqueue_scripts', 'add_google_fonts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment