Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

How to Stop Storing IP Address in WordPress Comments

Do you know if your WordPress site stores IP addresses in comments? By default, WordPress logs and stores the IP addresses of commenters to protect against spam.

However, with the rise of data privacy laws like GDPR, you might want to disable this functionality to better protect your website visitors’ data.

At WPBeginner, we don’t store users’ IP addresses in WordPress comments. This helps us respect our visitors’ privacy while ensuring compliance with data protection laws.

We’ve also helped many different WordPress site owners make this change. In this guide, we’ll show you how to stop storing IP addresses in comments, plus share tips to keep your comment section secure and privacy-compliant. 🙌

How to Stop Storing IP Address in WordPress Comments

Should You Stop Storing IP Addresses in WordPress Comments?

Yes, you should stop storing IP addresses in WordPress comments if you want to ensure your website’s compliance with the General Data Protection Regulation (GDPR).

By default, WordPress will store users’ IP addresses on your website (unless they use a VPN). This is mainly used to combat spam comments from suspicious IP addresses.

Some website security plugins may also use IP addresses to put users in a comment blacklist or block malicious IP addresses to prevent threats like brute force attacks and DDoS attacks.

However, some users may feel uncomfortable with their IP addresses being logged, and it can make your WordPress website less compliant with GDPR. This is because GDPR classifies IP addresses as personal data.

Most WordPress web hosting providers keep raw access logs of all visitors to your website for a limited period of time. Plus, you can view these IP addresses when viewing the Comments page in the WordPress dashboard.

Now, let’s look at how to block IP addresses from being saved in WordPress comments and improve your WordPress security. Here is an overview of what we will cover:

Let’s get started!

This first method uses the WPCode plugin. We will use this plugin to insert a custom code snippet that stops your website from storing IP addresses from the comments section.

If this is your first time using code, don’t worry. WPCode’s user-friendly interface makes it easy to insert and manage custom code, even for a beginner.

Some of our business partners actually use it to add and manage their custom code snippets. If you want to learn more about it, we have a full WPCode review you can check out.

WPCode's homepage

To use WPCode, you need to install the plugin first on your admin dashboard. For more guidance, check out our article on how to install a WordPress plugin.

Note: This article will use the WPCode free version, but feel free to upgrade to a Pro plan for more advanced features like conditional logic and scheduled snippets.

Now, you need to go to Code Snippets » + Add Snippet from your WordPress admin panel.

After that, click the ‘+ Add Custom Snippet’ button under ‘Add Your Custom Code Snippet’.

Adding custom code in WPCode

Next, you need to choose a code type from the list of options that appear on the screen.

For this tutorial, select ‘PHP Snippet.’

Choosing PHP snippet in WPCode

You will now see the Create Custom Snippet screen.

First things first, you have to add a title for your code snippet. It can be something like ‘Disable IP Address in Comments.’

Then, in the ‘Code Preview’ box, you can insert the following code:

function wpb_remove_commentsip( $comment_author_ip ) { return ''; } add_filter( 'pre_comment_user_ip', 'wpb_remove_commentsip' );

It should look like this.

Removing IP addresses in the comments using WPCode

Now, scroll down to the ‘Insertion’ section. Make sure the Insert Method is ‘Auto Insert’ and the Location is ‘Run Everywhere.’

This will ensure the code is added to your WordPress theme’s functions.php file properly.

Applying the code snippet everywhere using WPCode

After that, make sure the toggle in the top right corner says ‘Active’ and click ‘Save Snippet.’

Now, the next time someone leaves a comment, you won’t see their IP address on the WordPress Comments page. That’s because this code will automatically block the attempt to save that information.

However, you will notice that previous comments still have this information stored. We will talk more about how to remove this data in the next part of the tutorial.

What the comment looks like after removing the IP address using WPCode

How to Remove IP Addresses From Older WordPress Comments

To remove IP addresses from your older WordPress comments, you will need to use phpMyAdmin. It’s a database management platform that usually comes with your WordPress hosting control panel.

⚠️ Important: Before you do anything, we strongly recommend you back up your WordPress database first. That way, you can restore the database if you make a critical error.

Once you do that, you need to log in to your WordPress hosting account and look for the phpMyAdmin menu, which is typically located in your cPanel.

For Bluehost users, you will find phpMyAdmin by going to ‘Websites’ and selecting the website you want to configure in your dashboard. It should be under ‘Quick Links’.

Navigating to the phpMyAdmin in Bluehost

Inside phpMyAdmin, you can navigate to the ‘SQL’ tab.

After that, enter this query below:

UPDATE wp_comments SET comment_author_IP = '';

Note that if you have a custom WordPress database prefix, then please change wp_comments to your custom table prefix.

Once that’s done, simply click the ‘Go’ button below the text area to run your query.

Removing IP addresses in older WordPress comments using phpMyAdmin

At this stage, just go back to your WordPress Comments page to see if the query worked properly. That’s it!

Bonus 🔗: Discover More Ways to Secure Your WordPress Website

Stopping WordPress from storing IP addresses in comments is a great step toward making your website more compliant with user privacy laws. Here are some other ways you can take it to the next level:

We hope this article has helped you learn how to stop storing IP addresses in WordPress comments. You may also want to see our expert picks for the best WordPress security plugins and our guide to the tell-tale signs hackers have hijacked your WordPress site.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

13 CommentsLeave a Reply

  1. I had already disabled storing IP addresses in comments using a custom code but i was struggling with “Removing the IP Addresses From Older WordPress ” but this article has helped me out instantly.
    Just paste the code in phpMyAdmin ‘SQL’ and you are all set. Indeed WordPress customization and coding is becoming simpler courtesy of WPBeginner. Thanks a lot.

  2. As privacy laws are getting stricter day by day it is important to eliminate collection and long-term storage of personally identifiable information. I’ve been using a plugin to remove IP addresses previously. thanks a lot, WPbeginner for providing such a useful code snippet.

  3. Thank you for the article. Many people in the Czech Republic are very sensitive to any private data after the introduction of GDPR. This is definitely useful so that they don’t have to worry about their sensitive data being displayed somewhere. One then feels much more free to write a comment.

    • You may want to reach out to your theme’s support to ensure this isn’t something specific to your theme.

      Admin

  4. Thanks for this article.
    The question that i have is if i stop storing IPs in WP comments, will this break the functionality of plugins like Akismet ? or will they still work properly?

    • They will still work, however they may not be able to catch spam comments using known IP addresses used for mass spamming. So a lot of spam comments may appear in your moderation queue.

      Admin

  5. If comment IPs are stored in database, will stopping storing IPs improve or make database perform better?

Leave A Reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.