Skip to content

Instantly share code, notes, and snippets.

@voneff
Created May 23, 2018 08:21
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save voneff/03379c56d25c919fd57b5d194d266ab7 to your computer and use it in GitHub Desktop.
WordPress: Disable IP collection through WordPress comments
<?php
/**
* Remove IP collection in WordPress comments
* Source: http://www.wpbeginner.com/wp-tutorials/how-to-stop-storing-ip-address-in-wordpress-comments/
*/
function wpb_remove_commentsip( $comment_author_ip ) {
return '';
}
add_filter( 'pre_comment_user_ip', 'wpb_remove_commentsip' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment