apply_filters( 'registration_errors', WP_Error $errors, string $sanitized_user_login, string $user_email )

Filters the errors encountered when a new user is being registered.


Description Description

The filtered WP_Error object may, for example, contain errors for an invalid or existing username or email address. A WP_Error object should always returned, but may or may not contain errors.

If any errors are present in $errors, this will abort the user’s registration.


Parameters Parameters

$errors

(WP_Error) A WP_Error object containing any errors encountered during registration.

$sanitized_user_login

(string) User's username after it has been sanitized.

$user_email

(string) User's email.


Top ↑

Source Source

File: wp-includes/user.php

View on Trac


Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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