I used to add fonts with codes like this:
add_action('admin_head', 'load_tiny_mce');
function load_tiny_mce(){
$theme_advanced_fonts = 'Arail=arail;';
wp_tiny_mce(false, array(
'mode' => 'specific_textareas',
'editor_selector' => 'tinymce-textarea',
'theme_advanced_fonts' => $theme_advanced_fonts
));
}
how to use wp_editor instead?
thanks