signup_user_init

signup_user_init

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('signup_user_init') is found 1 times:

  • /wp-signup.php line 612
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    *     @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'];
     
    ?>