password_change_email钩子是Wordpress钩子,过滤钩子:过滤用户密码更改时发送的电子邮件的内容。
apply_filters( ‘password_change_email’, array $pass_change_email, array $user, array $userdata )
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$pass_change_email | (array) | 用于生成wp_mail()。’到’(字符串)预期的收件人。以逗号分隔的字符串添加电子邮件。 |
‘subject'(string) The subject of the email. | ‘message’(string) The content of the email. The following strings have a special meaning and will get replaced dynamically: – ###USERNAME### The current user’s username. – ###ADMIN_EMAIL### The admin email in case this was unexpected. – ###EMAIL### The user’s email address. – ###SITENAME### The name of the site. – ###SITEURL### The URL to the site. | “headers”(字符串)标题。在换行符(rn)分隔的字符串中添加标题。 |
$user | (array) | 原始用户数组。 |
$userdata | (array) | 更新的用户数组。 |
源码(Source)
//暂无
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
4.3.0 | wp-includes/user.php:2052 | 1 | 0 |
笔记(Notes)
当用户更改密码时不发送电子邮件