Skip to content

Instantly share code, notes, and snippets.

@webworthydesign
Forked from colorful-tones/typekit
Created March 4, 2017 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webworthydesign/24d650717eb41603aace934072f5102c to your computer and use it in GitHub Desktop.
Save webworthydesign/24d650717eb41603aace934072f5102c to your computer and use it in GitHub Desktop.
Enqueue Typekit fonts for WordPress
<?php
// TypeKit
wp_enqueue_script( 'elp-typekit', '//use.typekit.net/YOUR_KIT_NUMBER_ID.js');
function elp_typekit_inline() {
if ( wp_script_is( 'elp-typekit', 'done' ) ) { ?>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<?php }
}
add_action( 'wp_head', 'elp_typekit_inline' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment