Created
May 5, 2018 08:49
-
-
Save SimonMayerhofer/4530488ef12716dd7989543cf7d76980 to your computer and use it in GitHub Desktop.
Disable saving of the IP address in WordPress comments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function my_remove_commentsip( $comment_author_ip ) { | |
return ''; | |
} | |
add_filter( 'pre_comment_user_ip', 'my_remove_commentsip' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment