Skip to content

Instantly share code, notes, and snippets.

View edirpedro's full-sized avatar
🏠
Working from home

Edir Pedro edirpedro

🏠
Working from home
View GitHub Profile
@edirpedro
edirpedro / typekit.editor.php
Created October 20, 2015 15:01 — forked from mikemanger/typekit.editor.php
Add a TypeKit font to the TinyMCE editor in WordPress.
add_filter( 'mce_external_plugins', 'my_theme_mce_external_plugins' );
function my_theme_mce_external_plugins( $plugin_array ) {
$plugin_array['typekit'] = get_template_directory_uri() . '/typekit.tinymce.js';
return $plugin_array;
}