php - User Meta - Additional Profile Fields - Not showing on Add New User - Wordpress
one text
Solution:
The hook to new user form is user_new_form:
add_action('user_new_form', 'tbc_show_extra_profile_fields', 99, 1);
add_action('show_user_profile', 'tbc_show_extra_profile_fields', 99, 1);
add_action('edit_user_profile', 'tbc_show_extra_profile_fields', 99, 1);
NOTE:
When user_new_form is called, the first parameter will be:
(string) A contextual string specifying which type of new user form the hook follows.
So, if you are going to use the same tbc_show_extra_profile_fields() to all hooks, remember to handle the $user_id variable properly.