Skip to content

Instantly share code, notes, and snippets.

@NickTomlin
Created October 18, 2012 17:02
Show Gist options
  • Save NickTomlin/3913306 to your computer and use it in GitHub Desktop.
Save NickTomlin/3913306 to your computer and use it in GitHub Desktop.
Including Typekit in WP Head
// include typekit
function typekit_init(){?>
<script type="text/javascript" src="//use.typekit.net/TYPEKITIDHERE.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<?}
add_action('wp_head', 'typekit_init');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment