Prevent Authors from viewing each others Posts
If you want to prevent a user with the “Author” role to view other users’ posts in the overview screen (they won’t be able to view the details anyway), you can add an extra filter on the author: add_action( ‘load-edit.php’, ‘wpse14230_load_edit’ ); function wpse14230_load_edit() { add_action( ‘request’, ‘wpse14230_request’ ); } function wpse14230_request( $query_vars ) { … Read more