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 |
|---|---|
| 315 | * ###EMAIL### The new email. |
| 316 | * ###SITENAME### The name of the site. |
| 317 | * ###SITEURL### The URL to the site. |
| 318 | * |
| 319 | * @since MU |
| 320 | * |
| 321 | * @param string $email_text Text in the email. |
| 322 | * @param string $new_user_email New user email that the current user has changed to. |
| 323 | */ |
| 324 | $content = apply_filters( 'new_user_email_content', $email_text, $new_user_email ); |
| 325 | |
| 326 | $content = str_replace( '###ADMIN_URL###', esc_url( admin_url( 'profile.php?newuseremail='.$hash ) ), $content ); |
| 327 | $content = str_replace( '###EMAIL###', $_POST['email'], $content); |
| 328 | $content = str_replace( '###SITENAME###', get_site_option( 'site_name' ), $content ); |
| 329 | $content = str_replace( '###SITEURL###', network_home_url(), $content ); |
| 330 | |
| 331 | wp_mail( $_POST['email'], sprintf( __( '[%s] New Email Address' ), get_option( 'blogname' ) ), $content ); |
| 332 | $_POST['email'] = $current_user->user_email; |
| 333 | } |