is_email
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.
Usage
add_filter( 'is_email', 'wp_kama_is_email_filter', 10, 3 );
/**
* Function for `is_email` filter-hook.
*
* @param string|false $is_email The email address if successfully passed the is_email() checks, false otherwise.
* @param string $email The email address being checked.
* @param string $context Context under which the email was tested.
*
* @return string|false
*/
function wp_kama_is_email_filter( $is_email, $email, $context ){
// filter...
return $is_email;
}
- $is_email(string|false)
- The email address if successfully passed the is_email() checks, false otherwise.
- $email(string)
- The email address being checked.
- $context(string)
- Context under which the email was tested.
Changelog
| Since 2.8.0 | Introduced. |
Where the hook is called
is_email
wp-includes/formatting.php 3562
return apply_filters( 'is_email', false, $email, 'email_too_short' );
wp-includes/formatting.php 3568
return apply_filters( 'is_email', false, $email, 'email_no_at' );
wp-includes/formatting.php 3580
return apply_filters( 'is_email', false, $email, 'local_invalid_chars' );
wp-includes/formatting.php 3589
return apply_filters( 'is_email', false, $email, 'domain_period_sequence' );
wp-includes/formatting.php 3595
return apply_filters( 'is_email', false, $email, 'domain_period_limits' );
wp-includes/formatting.php 3604
return apply_filters( 'is_email', false, $email, 'domain_no_periods' );
wp-includes/formatting.php 3612
return apply_filters( 'is_email', false, $email, 'sub_hyphen_limits' );
wp-includes/formatting.php 3618
return apply_filters( 'is_email', false, $email, 'sub_invalid_chars' );
wp-includes/formatting.php 3624
return apply_filters( 'is_email', $email, $email, null );