On the user main page in the screen options, you have some choices for displaying user information e.g.. e-mail, role, posts etc..
Is there a way to be able to display the user’s unique ID?
On the user main page in the screen options, you have some choices for displaying user information e.g.. e-mail, role, posts etc..
Is there a way to be able to display the user’s unique ID?
Comments are closed.
You need to use the filter
'manage_' . $screen->id . '_columns'
to add a column andmanage_users_custom_column
to display its value.With this, the ID will show up in the Screen Options as well.