is_email хук-фильтрWP 2.8.0

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.

Использование

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(строка|false)
The email address if successfully passed the is_email() checks, false otherwise.
$email(строка)
The email address being checked.
$context(строка)
Context under which the email was tested.

Список изменений

С версии 2.8.0 Введена.

Где вызывается хук

is_email()
is_email
wp-includes/formatting.php 3571
return apply_filters( 'is_email', false, $email, 'email_too_short' );
wp-includes/formatting.php 3577
return apply_filters( 'is_email', false, $email, 'email_no_at' );
wp-includes/formatting.php 3589
return apply_filters( 'is_email', false, $email, 'local_invalid_chars' );
wp-includes/formatting.php 3598
return apply_filters( 'is_email', false, $email, 'domain_period_sequence' );
wp-includes/formatting.php 3604
return apply_filters( 'is_email', false, $email, 'domain_period_limits' );
wp-includes/formatting.php 3613
return apply_filters( 'is_email', false, $email, 'domain_no_periods' );
wp-includes/formatting.php 3621
return apply_filters( 'is_email', false, $email, 'sub_hyphen_limits' );
wp-includes/formatting.php 3627
return apply_filters( 'is_email', false, $email, 'sub_invalid_chars' );
wp-includes/formatting.php 3633
return apply_filters( 'is_email', $email, $email, null );

Где используется хук в WordPress

Использование не найдено.