Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Created July 29, 2013 19:41
Show Gist options
  • Select an option

  • Save fatihtoprak/6107136 to your computer and use it in GitHub Desktop.

Select an option

Save fatihtoprak/6107136 to your computer and use it in GitHub Desktop.
No ip for wordpress comment Author in Admin area
<?php
function hide_ip($ip) {
return ( strstr($_SERVER['PHP_SELF'], 'wp-admin/') ) ? 'hidden' : $ip;
}
add_filter('get_comment_author_IP', 'hide_ip');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment