sanitize_email
Filters a sanitized email address.
This filter is evaluated under several contexts, including 'email_too_short', 'email_no_at', 'local_invalid_chars', 'domain_period_sequence', 'domain_period_limits', 'domain_no_periods', 'domain_no_valid_subs', or no context.
Usage
add_filter( 'sanitize_email', 'wp_kama_sanitize_email_filter', 10, 3 );
/**
* Function for `sanitize_email` filter-hook.
*
* @param string $sanitized_email The sanitized email address.
* @param string $email The email address, as provided to sanitize_email().
* @param string|null $message A message to pass to the user. null if email is sanitized.
*
* @return string
*/
function wp_kama_sanitize_email_filter( $sanitized_email, $email, $message ){
// filter...
return $sanitized_email;
}
- $sanitized_email(string)
- The sanitized email address.
- $email(string)
- The email address, as provided to sanitize_email().
- $message(string|null)
- A message to pass to the user. null if email is sanitized.
Changelog
| Since 2.8.0 | Introduced. |
Where the hook is called
sanitize_email
wp-includes/formatting.php 3776
return apply_filters( 'sanitize_email', '', $email, 'email_too_short' );
wp-includes/formatting.php 3782
return apply_filters( 'sanitize_email', '', $email, 'email_no_at' );
wp-includes/formatting.php 3795
return apply_filters( 'sanitize_email', '', $email, 'local_invalid_chars' );
wp-includes/formatting.php 3805
return apply_filters( 'sanitize_email', '', $email, 'domain_period_sequence' );
wp-includes/formatting.php 3812
return apply_filters( 'sanitize_email', '', $email, 'domain_period_limits' );
wp-includes/formatting.php 3821
return apply_filters( 'sanitize_email', '', $email, 'domain_no_periods' );
wp-includes/formatting.php 3844
return apply_filters( 'sanitize_email', '', $email, 'domain_no_valid_subs' );
wp-includes/formatting.php 3855
return apply_filters( 'sanitize_email', $sanitized_email, $email, null );