当user resets their own password, 创建插件(或Must Use Plugin) 使用以下代码段:
/**
* Disable Admin Notification of User Password Change
*
* @see pluggable.php
*/
if ( ! function_exists( \'wp_password_change_notification\' ) ) {
function wp_password_change_notification( $user ) {
return;
}
}
这将阻止以下电子邮件发送到“设置”>“常规”中的管理员电子邮件:
From: WordPress<;[email protected]&燃气轮机
To: [email protected]
Subject: [WordPress]密码已更改
用户的密码已更改:用户名
抑制此电子邮件通知必须使用插件处理,因为pluggable.php
加载时间早于主题的functions.php
文件
如果您希望禁用用户电子邮件通知user has successfully changed their own password, 使用放置在中的以下过滤器functions.php
:
/**
* Disable User Notification of Password Change Confirmation
*/
add_filter( \'send_password_change_email\', \'__return_false\' );
这将禁止发送以下电子邮件:
From: WordPress<;[email protected]&燃气轮机
To: [email protected]
Subject: [WordPress]密码已更改
您好用户名,
此通知确认您的密码已在WordPress上更改。
如果您没有更改密码,请通过以下地址与网站管理员联系:[email protected]
此电子邮件已发送至[email protected]
向WordPress致意http://example.com/