Created
March 28, 2014 19:25
-
-
Save burnified/9841002 to your computer and use it in GitHub Desktop.
Enqueue Typekit via Wordpress
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
/*** TypeKit Fonts ***/ | |
function theme_typekit() { | |
wp_enqueue_script( 'theme_typekit', '//use.typekit.net/hoo8stk.js'); | |
} | |
add_action( 'wp_enqueue_scripts', 'theme_typekit' ); | |
function theme_typekit_inline() { | |
if ( wp_script_is( 'theme_typekit', 'done' ) ) { ?> | |
<script type="text/javascript">try{Typekit.load();}catch(e){}</script> | |
<?php } } | |
add_action( 'wp_head', 'theme_typekit_inline' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment