wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



registration_errors › Filtr WordPress Hooks

Od2.1.0
Przestarzałyn/a
apply_filters( 'registration_errors', $errors, $sanitized_user_login, $user_email )
Parametry: (3)
  • (WP_Error) $errors A WP_Error object containing any errors encountered during registration.
    Wymagane: Tak
  • (string) $sanitized_user_login User's username after it has been sanitized.
    Wymagane: Tak
  • (string) $user_email User's email.
    Wymagane: Tak
Zdefiniowane na:
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.





Źródło

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