How to Remove Website URL Field from the WordPress Comment Form

If you purchase through a link on our site, we may earn a commission. Learn more.

Spam comments are a huge problem for all blogs. In this article, we’ll see how to remove the website URL field from your WordPress comment forms using PHP code.
Table of Contents
WP Engine High Performance Hosting
BionicWP Hosting

Over the course of my two years working on the WP Mayor blog, I’ve noticed that many commenters used the comments section to secure backlinks to their websites. We have been using spam detection plugins, but some human comments always sneak through. Ever since I have been mulling over ways to combat comment spam.

In a recent team meeting, Prithu, our new Editorial Manager, brought something to my attention:

WordPress automatically asks for commenters’ website URL in all submissions.

It was a lightbulb moment! We suddenly realized that there was a very simple solution to disable the comment URL for all comments.

In this article, I’ll talk you through why people submit spam comments. Next, I’ll guide you through the very simple process of removing the website URL field from the WordPress comment form.

Why do I keep getting SPAM comments?

Well, people submit spam comments to try and improve their SEO. They do this by adding their website URL. In this way, they’ll get a backlink from your site. They believe that the more backlinks from reputable sites they get, the better their SEO score.

This is a blackhat SEO trick and for the most part, it doesn’t work. However, every blog owner will tell you that they receive tens of spam comments every day nonetheless.

WordPress’s default comment form includes the following four fields: name, email, website URL, and the comment box.

To help prevent comment spam, we’ll be removing the website URL field listed above.

Deafult comment form
The default WordPress comment form

How to remove the website URL field from the WordPress comment form

In this solution, we’ll be using the following code snippet.

add_filter('comment_form_default_fields', 'unset_url_field');
function unset_url_field($fields){
    if(isset($fields['url']))
       unset($fields['url']);
       return $fields;
}

You can manually place this in your theme’s functions.php file or use a snippets plugin to be safer. Keep in mind that if you don’t know what you’re doing, you can easily change something in the functions.php file and harm your website.

In this case, I’ve used the Code Snippets plugin. Simply install and activate the plugin on your website, and add a new snippet.

Code Snippets

Type in a title and add the code. Activate the snippet and you’re good to go!

Add new snippet

To check out the final result, view the website in incognito mode on your web browser.

Remove website URL from comment form
The final result.

Combat comment spam on your WordPress website

Spam comments are a huge problem for all blogs. In this article, we’ve seen how to remove the website URL field from your WordPress comment forms using PHP code.

We hope this method has helped you combat comment spam and while we have you here, we recommend looking at a few other ways that may help. You can add reCAPTCHA, restrict comment submissions, and more.

In addition, you can also opt to remove the WordPress comment author link since this is something that many spam commenters seem to target.

If you’ve used this solution or come across another method, let us know in the comment section below. But hey – no spam comments! 😉

Gaby Abela

Gaby is the Product Manager at RebelCode. An architect by profession and designer by nature, she is dedicated to helping users and readers alike to navigate the online world of WordPress. You can find her on Twitter @GabyAbela.

Discover more from our archives ↓

Popular articles ↓

2 Responses

  1. Thankyou, I hope this code remove url form premanently
    because i see someone still able to comment their url even we already remove it.

Share Your Thoughts

Your email address will not be published. Required fields are marked *

Claim Your Free Website Tip 👇

Leave your name, email and website URL below to receive one actionable improvement tip tailored for your website within the next 24 hours.

"They identified areas for improvement that we had not previously considered." - Elliot

By providing your information, you'll also be subscribing to our weekly newsletter packed with exclusive content and insights. You can unsubscribe at any time with just one click.