如何取消WordPress注册通知邮件

会员注册通知邮件

为了在WordPress中添加会员注册功能,当安装WP-Members插件时,注册时会向注册会员发送如下的注册通知邮件。

我不觉得它好看,也没有翻译出来,所以我想把它去掉。

 

Delete notification email feature

通知邮件称为 wp_new_user_notification 的 WordPress 基本函数执行时发送邮件。

通过将以下内容添加到激活主题文件夹中的 function.php,可以禁用该函数的功能。此函数是可插拔函数,因此可以重新定义以替代…

/* Remove Wordpress notification mailing function that is sent to members by default upon registration */
if( !function_exists ( ‘wp_new_user_notification’)){
    function wp_new_user_notification ( $user_id, $notify = ” ) { }
}

参考

Updated : March 25, 2020
{{ reviewsTotal }}{{ options.labels.singularReviewCountLabel }}
{{ reviewsTotal }}{{ options.labels.pluralReviewCountLabel }}
{{ options.labels.newReviewButton }}
{{ userData.canReview.message }}
This site is registered on wpml.org as a development site. Switch to a production site key to remove this banner.