wpseek.com
A WordPress-centric search engine for devs and theme authors



is_email › WordPress Filter Hooks

Since2.8.0
Deprecatedn/a
apply_filters( 'is_email', false, $email, null )
Parameters: (3)
  • () is_email The email address if successfully passed the is_email() checks, false otherwise.
    Required: Yes
  • () email The email address being checked.
    Required: Yes
  • () context Context under which the email was tested, or null for the initial call.
    Required: Yes
Defined at:
Codex:

Filters whether an email address is valid.

This filter is evaluated under several different contexts, such as 'local_invalid_chars', 'domain_no_periods', or no specific context. Filters registered on this hook perform the actual validation; the default filter is registered in default-filters.php.




Source

return apply_filters( 'is_email', false, $email, null );