gpt4 book ai didi

php - 更改密码后禁用wordpress 4.3发送电子邮件

转载 作者:可可西里 更新时间:2023-11-01 13:42:40 26 4
gpt4 key购买 nike

Wordpress 开发人员说:您可以通过将 send_pass_change_email 和 send_email_change_email 过滤器设置为 false 来禁用这些电子邮件。

我已将这些行添加到我的插件中,但没有帮助:

function no_email_pass_change(){ return false; }
add_filter( 'send_pass_change_email' , 'no_email_password_change');

function no_email_email_change(){ return false; }
add_filter( 'send_email_change_email' , 'no_email_email_change');

function no_email_password_change(){ return false; }
add_filter( 'wp_password_change_notification' , 'no_email_password_change');

我也试过这些:

add_filter( 'send_pass_change_email', '__return_false');
add_filter( 'send_email_change_email', '__return_false');

但没有任何帮助。它仅适用于 WP 4.3。我做错了什么?

最佳答案

使用以下内容:

  add_filter( 'send_password_change_email', '__return_false');

他们在文档中放置了错误的描述。

关于php - 更改密码后禁用wordpress 4.3发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32082645/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com