Created
October 16, 2019 14:00
-
-
Save jamiejohnsonkc/27cecf304c6b8d6fda315616b75b78f7 to your computer and use it in GitHub Desktop.
wp enqueue typekit font #php #function #wp
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
| function enqueue_adobe_fonts_stylesheet() | |
| { | |
| wp_enqueue_style('adobe_fonts_stylesheet', 'https://use.typekit.net/hny8rtu.css', 'all'); | |
| } | |
| add_action('wp_enqueue_scripts', 'enqueue_adobe_fonts_stylesheet'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment