Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_password_change_notification_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
2061                 *
2062                 *     @type string $to      The intended recipient - site admin email address.
2063                 *     @type string $subject The subject of the email.
2064                 *     @type string $message The body of the email.
2065                 *     @type string $headers The headers of the email.
2066                 * }
2067                 * @param WP_User $user     User object for user whose password was changed.
2068                 * @param string  $blogname The site title.
2069                 */
2070                $wp_password_change_notification_email = apply_filters( 'wp_password_change_notification_email', $wp_password_change_notification_email, $user, $blogname );
2071
2072                wp_mail(
2073                     $wp_password_change_notification_email['to'],
2074                     wp_specialchars_decode( sprintf( $wp_password_change_notification_email['subject'], $blogname ) ),
2075                     $wp_password_change_notification_email['message'],
2076                     $wp_password_change_notification_email['headers']
2077                );
2078           }
2079      }