I want to add some custom fields to add new user in WordPress . I am using the following hooks:
show_user_profileedit_user_profile
these hooks displaying new custom field on edit profile page, but i want the new custom field to be shown in Add New User page.
and also i want to insert values in wp_usermeta table, for this i am using following hooks:
personal_options_updateedit_user_profile_update
these hooks are also working fine on edit or update profile, but i need the insertion of record in wp_usermeta tabe at the time of Add new User, not at the Profile update time.
please give me hint of hook that will b used at ADD New User.
Thank you in advance.
As far as I can see there are no action hooks that will trigger on the new user page. Searched in user-new.php for
do_action.