Skip to content

Instantly share code, notes, and snippets.

@yuliyang
Created July 7, 2020 13:53
Show Gist options
  • Save yuliyang/07d21896b167d5002cdbaf0b38ae75de to your computer and use it in GitHub Desktop.
Save yuliyang/07d21896b167d5002cdbaf0b38ae75de to your computer and use it in GitHub Desktop.
[WordPress] Enqueue Google Fonts
<?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