Skip to content

Instantly share code, notes, and snippets.

@radist2s
Created November 25, 2013 20:31
Show Gist options
  • Save radist2s/7648357 to your computer and use it in GitHub Desktop.
Save radist2s/7648357 to your computer and use it in GitHub Desktop.
Wordpress Custom TinMCE style.
add_filter('tiny_mce_before_init', 'tinymce_before_init_extend');
add_filter('teeny_mce_before_init', 'tinymce_before_init_extend');
function tinymce_before_init_extend($atts)
{
$custom_options = array(
'content_css' => get_bloginfo('template_url') . '/css/editor.css'
);
return array_merge($atts, $custom_options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment