signup_user_init

signup_user_init

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('signup_user_init') is found 1 times:

  • /wp-signup.php line 612
    	 *     @type string   $user_email The user email address.
    	 *     @type WP_Error $errors     A WP_Error object with possible errors relevant to the sign-up user.
    	 * }
    	 */
    	$filtered_results = apply_filters( 'signup_user_init', $signup_user_defaults );
    	$user_name        = $filtered_results['user_name'];
    	$user_email       = $filtered_results['user_email'];
    	$errors           = $filtered_results['errors'];
    
    	?>