Skip to content

Instantly share code, notes, and snippets.

View Zae's full-sized avatar

Ezra Pool Zae

  • Digital Natives
  • Amsterdam
View GitHub Profile
@Zae
Zae / typekit.editor.php
Created September 18, 2012 10:08 — forked from tomjn/typekit.editor.php
Typekit fonts for TinyMCE editor plugin
add_filter("mce_external_plugins", "tomjn_mce_external_plugins");
function tomjn_mce_external_plugins($plugin_array){
$plugin_array['typekit'] = get_template_directory_uri().'/typekit.tinymce.js';
return $plugin_array;
}