Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




wp_password_change_notification [ WordPress Function ]

wp_password_change_notification ( $user )
Parameters:
  • (object) $user User Object
Defined at:



Notify the blog admin of a user changing password, normally via email.

Source


<?php
function wp_password_change_notification(&$user) {
    
// send a copy of password change notification to the admin
    // but check to see if it's the admin whose password we're changing, and skip this
    
if ( $user->user_email != get_option('admin_email') ) {
        
$message sprintf(__('Password Lost and Changed for user: %s'), $user->user_login) . "\r\n";
        
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
        // we want to reverse this for the plain text arena of emails.
        
$blogname wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
        
wp_mail(get_option('admin_email'), sprintf(__('[%s] Password Lost/Changed'), $blogname), $message);
    }
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics