// Remove editor only for author based on Custom Post Types
function remove_editor() {
if (current_user_can('author')){
remove_post_type_support('custom_post_type','editor');
}
}
add_action('admin_init','remove_editor');
Expert WordPress Solutions
// Remove editor only for author based on Custom Post Types
function remove_editor() {
if (current_user_can('author')){
remove_post_type_support('custom_post_type','editor');
}
}
add_action('admin_init','remove_editor');