signup_extra_fields action-hook . WP 3.0.0
Fires at the end of the new user account registration form.
Usage
add_action( 'signup_extra_fields', 'action_function_name_6449' ); function action_function_name_6449( $errors ){ // action... }
- $errors(WP_Error)
- A WP_Error object containing 'user_name' or 'user_email' errors.
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
signup_extra_fields
wp-signup.php 286
do_action( 'signup_extra_fields', $errors );