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