WordPressのwp-includes/pluggable.php
ファイルを開きます。
ユーザー登録時のメール送信を無効にする
以下のコードを見つけ、それをコメントアウトします(/* ... */
で囲む)ことで、新規ユーザー登録時に管理者にメール通知されるのを阻止します。
$wp_new_user_notification_email_admin = array(
'to' => get_option( 'admin_email' ),
/* translators: Password change notification email subject. %s: Site title */
'subject' => __( '[%s] New User Registration' ),
'message' => $message,
'headers' => '',
);
パスワード変更時のメール送信を無効にする
同様に、以下のコードをコメントアウトすることで、ユーザーがパスワードを変更した際の管理者へのメール通知を停止します。
$wp_password_change_notification_email = array(
'to' => get_option( 'admin_email' ),
/* translators: Password change notification email subject. %s: Site title */
'subject' => __( '[%s] Password Changed' ),
'message' => $message,
'headers' => '',
);
WordPressがアップデートされると、このファイルは再度変更される可能性があるため、再度修正が必要です。
コメント