Skip to content

Instantly share code, notes, and snippets.

@samkent
Last active November 4, 2019 12:04
Show Gist options
  • Save samkent/f99174c5504a371e57bb48dcb8948f7b to your computer and use it in GitHub Desktop.
Save samkent/f99174c5504a371e57bb48dcb8948f7b to your computer and use it in GitHub Desktop.
Add Google Fonts to WordPress
<?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