Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: send_email_change_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
1979            *
1980            * @since 4.3.0
1981            *
1982            * @see wp_insert_user() For `$user` and `$userdata` fields.
1983            *
1984            * @param bool  $send     Whether to send the email.
1985            * @param array $user     The original user array.
1986            * @param array $userdata The updated user array.
1987            */
1988           $send_email_change_email = apply_filters( 'send_email_change_email', true, $user, $userdata );
1989      }
1990
1991      clean_user_cache( $user_obj );
1992
1993      // Merge old and new fields with new fields overwriting old ones.
1994      $userdata = array_merge( $user, $userdata );
1995      $user_id  = wp_insert_user( $userdata );
1996
1997      if ( ! is_wp_error( $user_id ) ) {