Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: send_new_site_email

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
1722       *
1723       * Return false to disable sending the email.
1724       *
1725       * @since 5.6.0
1726       *
1727       * @param bool    $send Whether to send the email.
1728       * @param WP_Site $site Site object of the new site.
1729       * @param WP_User $user User object of the administrator of the new site.
1730       */
1731      if ( ! apply_filters( 'send_new_site_email', true, $site, $user ) ) {
1732           return false;
1733      }
1734
1735      $switched_locale = false;
1736      $network_admin   = get_user_by( 'email', $email );
1737
1738      if ( $network_admin ) {
1739           // If the network admin email address corresponds to a user, switch to their locale.
1740           $switched_locale = switch_to_locale( get_user_locale( $network_admin ) );