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, 'email_too_short' )
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.
    Required: Yes
Defined at:
Codex:

Filters whether an email address is valid.

This filter is evaluated under several different contexts, such as 'email_too_short', 'email_no_at', 'local_invalid_chars', 'domain_period_sequence', 'domain_period_limits', 'domain_no_periods', 'sub_hyphen_limits', 'sub_invalid_chars', or no specific context.




Source

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