Hide username from users list
There are no direct filters using which we can change the content of Name column. So to get what you want, we should remove ‘Name’ column too and create our own Name column. Therefore, modify_user_columns function will be like this function modify_user_columns($column) { $column = array( “cb” => “<input type=\”checkbox\” />”, “wdm_name” => __(‘Name’), “email” … Read more