Title: Exclude IP
Last modified: August 9, 2017

---

# Exclude IP

 *  [mindero](https://wordpress.org/support/users/mindero/)
 * (@mindero)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/exclude-ip/)
 * For privacy reasons I would like to not log the IP address with every saved post.
   Can this be done somehow?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Takayuki Miyoshi](https://wordpress.org/support/users/takayukister/)
 * (@takayukister)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/exclude-ip/#post-9396546)
 * Not possible in the current version. The next release will have a filter hook
   that allows to control the data to save.
 *  [Prafulla Kumar Sahu](https://wordpress.org/support/users/prafulla/)
 * (@prafulla)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/exclude-ip/#post-9427723)
 *     ```
       add_filter( 'flamingo_add_inbound', function($args){
           unset($args['meta']['remote_ip'])
       });
       ```
   
 * may solve your problem.
 *  Thread Starter [mindero](https://wordpress.org/support/users/mindero/)
 * (@mindero)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/exclude-ip/#post-9445472)
 * Thanks for the feedback! It doesn’t seem to work for me though (IP is still logged).
 * I created a plugin with the following function:
 * function flamingo_exclude_ip() {
    add_filter(‘flamingo_add_inbound’, function(
   $args){ unset($args[‘meta’][‘remote_ip’]); }); }
 * …and activated that plugin. Is this a wrong approach?

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Exclude IP’ is closed to new replies.

 * ![](https://ps.w.org/flamingo/assets/icon-128x128.png?rev=1540977)
 * [Flamingo](https://wordpress.org/plugins/flamingo/)
 * [Support Threads](https://wordpress.org/support/plugin/flamingo/)
 * [Active Topics](https://wordpress.org/support/plugin/flamingo/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/flamingo/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/flamingo/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [mindero](https://wordpress.org/support/users/mindero/)
 * Last activity: [8 years, 9 months ago](https://wordpress.org/support/topic/exclude-ip/#post-9445472)
 * Status: not resolved