WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about wpmu_validate_user_signup

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/ms-functions.php apply_filters 584 /**
* Filters the validated user registration details.
*
* 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.
*
* @since MU (3.0.0)
*
* @param array $result {
* The array of user name, email, and the error messages.
*
* @type string $user_name Sanitized and unique username.
* @type string $orig_username Original username.
* @type string $user_email User email address.
* @type WP_Error $errors WP_Error object containing any errors found.
* }
*/

Hook Parameters

Parameter Type Name Description
array $resul t {