Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: new_user_email_content

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
3290            *
3291            * @param string $email_text     Text in the email.
3292            * @param array  $new_user_email {
3293            *     Data relating to the new user email address.
3294            *
3295            *     @type string $hash     The secure hash used in the confirmation link URL.
3296            *     @type string $newemail The proposed new email address.
3297            * }
3298            */
3299           $content = apply_filters( 'new_user_email_content', $email_text, $new_user_email );
3300
3301           $content = str_replace( '###USERNAME###', $current_user->user_login, $content );
3302           $content = str_replace( '###ADMIN_URL###', esc_url( admin_url( 'profile.php?newuseremail=' . $hash ) ), $content );
3303           $content = str_replace( '###EMAIL###', $_POST['email'], $content );
3304           $content = str_replace( '###SITENAME###', $sitename, $content );
3305           $content = str_replace( '###SITEURL###', home_url(), $content );
3306
3307           /* translators: New email address notification email subject. %s: Site title. */
3308           wp_mail( $_POST['email'], sprintf( __( '[%s] Email Change Request' ), $sitename ), $content );