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