wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



registration_errors › WordPress Filter Hooks

Seit2.1.0
Veraltetn/v
apply_filters( 'registration_errors', $errors, $sanitized_user_login, $user_email )
Parameter: (3)
  • (WP_Error) $errors A WP_Error object containing any errors encountered during registration.
    Erforderlich: Ja
  • (string) $sanitized_user_login User's username after it has been sanitized.
    Erforderlich: Ja
  • (string) $user_email User's email.
    Erforderlich: Ja
Definiert in:
Codex:

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

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 be returned, but may or may not contain errors.

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





Quellcode

$errors = apply_filters( 'registration_errors', $errors, $sanitized_user_login, $user_email );