WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
2865 | * |
2866 | * @param string $email_text Text in the email. |
2867 | * @param array $new_user_email { |
2868 | * Data relating to the new user email address. |
2869 | * |
2870 | * @type string $hash The secure hash used in the confirmation link URL. |
2871 | * @type string $newemail The proposed new email address. |
2872 | * } |
2873 | */ |
2874 | $content = apply_filters( 'new_user_email_content', $email_text, $new_user_email ); |
2875 |
|
2876 | $content = str_replace( '###USERNAME###', $current_user->user_login, $content ); |
2877 | $content = str_replace( '###ADMIN_URL###', esc_url( admin_url( 'profile.php?newuseremail=' . $hash ) ), $content ); |
2878 | $content = str_replace( '###EMAIL###', $_POST['email'], $content ); |
2879 | $content = str_replace( '###SITENAME###', $sitename, $content ); |
2880 | $content = str_replace( '###SITEURL###', home_url(), $content ); |
2881 |
|
2882 | /* translators: New email address notification email subject. %s: Site title. */ |
2883 | wp_mail( $_POST['email'], sprintf( __( '[%s] Email Change Request' ), $sitename ), $content ); |