是的,电子邮件属性通过wp_password_change_notification_email 在发送之前(code here), 您可以钩住它来修改它们,例如。
function set_password_change_notification_email_to( $email, $user, $blogname ) {
$email[ \'to\' ] = \'[email protected]\';
return $email;
}
add_filter( \'wp_password_change_notification_email\',
\'set_password_change_notification_email_to\', 10, 3 );