Üye olunduğunda yöneticiye e-posta gitmemesi için wp-includes/pluggable.php dosyasının 624. satırını silin:

	@wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), get_option('blogname')), $message);

Üye şifresini değiştirdiğinde e-posta atmaması için kök klasördeki wp-login.php'de, 195. satırda başlayan:

		// send a copy of password change notification to the admin
		// but check to see if it's the admin whose password we're changing, and skip this
		if ($user->user_email != get_option('admin_email')) {
			$message = sprintf(__('Password Lost and Changed for user: %s'), $user->user_login) . "\r\n";
			wp_mail(get_option('admin_email'), sprintf(__('[%s] Password Lost/Changed'), get_option('blogname')), $message);
		}
kod öbeğini silmeniz gerekir.

Sevgiler.