Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: is_email_address_unsafe

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
431
432      /**
433       * Filters whether an email address is unsafe.
434       *
435       * @since 3.5.0
436       *
437       * @param bool   $is_email_address_unsafe Whether the email address is "unsafe". Default false.
438       * @param string $user_email              User email address.
439       */
440      return apply_filters( 'is_email_address_unsafe', $is_email_address_unsafe, $user_email );
441 }
442
443 /**
444  * Sanitize and validate data required for a user sign-up.
445  *
446  * Verifies the validity and uniqueness of user names and user email addresses,
447  * and checks email addresses against allowed and disallowed domains provided by
448  * administrators.
449  *