Hide post title input for all roles except admin
I tried following code and its working. You need to place this in your theme’s funtions.php file. Let me know how it goes 🙂 add_action(‘admin_init’, ‘admin_only_post_title’); function admin_only_post_title() { if (!current_user_can(‘manage_options’)) remove_post_type_support(‘post’, ‘title’); }