apply_filters( ‘wpmu_validate_user_signup’, array $result )

In this article

Filters the validated user registration details.

Description

This does not allow you to override the username or email of the user during registration. The values are solely used for validation and error handling.

Parameters

$resultarray
The array of user name, email, and the error messages.
  • user_name string
    Sanitized and unique username.
  • orig_username string
    Original username.
  • user_email string
    User email address.
  • errors WP_Error
    WP_Error object containing any errors found.

Source

return apply_filters( 'wpmu_validate_user_signup', $result );

Changelog

VersionDescription
MU (3.0.0)Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.