WordPress – Add a custom column to admin users list displaying custom user metadata
I have added a custom meta field to users called "customer_code". This all works and stores the information just fine. I have added the "Customer Code" column to the users admin page like so: add_filter('manage_users_columns', 'db_add_customer_code_column'); function db_add_customer_code_column($columns) { $columns…