Don’t store commenters’ IP addresses
New comments are saved without the commenter’s IP address and browser details, so you keep less personal data.
<?php
add_filter( 'pre_comment_user_ip', '__return_empty_string' );
add_filter( 'pre_comment_user_agent', '__return_empty_string' );
Good to know
Spam filters such as Akismet check the IP address. Keep this off if you rely on them.
In these packs
- Privacy and GDPR: Keep less personal data and send less of it to other companies.