Created
July 7, 2020 13:53
-
-
Save yuliyang/07d21896b167d5002cdbaf0b38ae75de to your computer and use it in GitHub Desktop.
[WordPress] Enqueue Google Fonts
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
<?php | |
function ching_add_google_fonts() { | |
wp_enqueue_style( 'ching-google-fonts', 'fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Noto+Serif+TC:wght@300;400;500;600;700&display=swap', false ); | |
} | |
add_action( 'wp_enqueue_scripts', 'ching_add_google_fonts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment