Remove post title input from edit page

You can do this :

add_action('admin_init', 'wpse_110427_hide_title');
function wpse_110427_hide_title() {
 if (current_user_can('subscriber'))
     remove_post_type_support('post', 'title');

}

This would hide title for subscriber.
Replace ‘post’ with your custom post type

Leave a Comment