I'm trying to do the OPPOSITE of this...
function my_custom_init() {
if (current_user_can('administrator')) {
remove_post_type_support( 'company', 'editor' );
remove_post_type_support( 'company', 'excerpt' );
}
}
add_action( 'init', 'my_custom_init' );
AKA: If current user is NOT 'administrator' then remove the post support.