Display only author posts in dashboard all posts panel
The following worked for me to show only the current user’s posts in the admin add_action( ‘load-edit.php’, ‘posts_for_current_author’ ); function posts_for_current_author() { global $user_ID; /*if current user is an ‘administrator’ do nothing*/ //if ( current_user_can( ‘add_users’ ) ) return; /*if current user is an ‘administrator’ or ‘editor’ do nothing*/ if ( current_user_can( ‘edit_others_pages’ ) ) … Read more