I’m considering using the hooks for the WordPress registration form to add some custom fields: https://codex.wordpress.org/Customizing_the_Registration_Form
My question is, if it’s even possible, how do I display some of these custom fields in the backend Users > All Users? For example if I have fields for ‘zip code’ and ‘address’, how would I display this data in the backend? Thanks.
Actually I found this to be more strait forward and simpler:
More info for hooks for custom columns can be found here: http://tareq.wedevs.com/2011/07/add-your-custom-columns-to-wordpress-admin-panel-tables/
To display the user meta data in the User’s page, you need the filters
manage_users_custom_column
andmanage_users_columns
: Sortable Custom Columns in User Panel (users.php)?And to add the fields in the User/Profile pages, the following (from Checkboxes in registration form):