Validates user sign-up name and email.
Source
function validate_user_form() {
return wpmu_validate_user_signup( $_POST['user_name'], $_POST['user_email'] );
}
Changelog
Version | Description |
---|---|
MU (3.0.0) | Introduced. |
CARVIEW |
Validates user sign-up name and email.
function validate_user_form() {
return wpmu_validate_user_signup( $_POST['user_name'], $_POST['user_email'] );
}
Uses | Description |
---|---|
wpmu_validate_user_signup()wp-includes/ms-functions.php | Sanitizes and validates data required for a user sign-up. |
Used by | Description |
---|---|
validate_user_signup()wp-signup.php | Validates the new user sign-up. |
Version | Description |
---|---|
MU (3.0.0) | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.