set role specific screen options in post summary page
I assume, you need something like editors can’t see the category column or something like this. This snippet might help you: /** Remove “Options”-Panel, when User is not admin **/ add_filter( ‘manage_posts_columns’, ‘change_columns_for_user’, 10, 2 ); function change_columns_for_user( $columns, $post_type ){ if( ‘post’ != $post_type ) return $columns; if( current_user_can( ‘manage_options’ ) ) return $columns; … Read more