Search
Close this search box.

How to Remove Website URL Field from the WordPress Comment Form

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

Sponsored Ad

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

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 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.

Sponsored Ad

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

All suggestions are anonymous.

More from our blog...

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.

Post a Comment

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Stay updated with WP Mayor's newsletter showcase every week

Stay on top of every new WordPress innovation and latest launches. Receive all our fresh product reviews and expert guides directly in your inbox.

Hosting Survey 2024

Are you happy with your hosting provider or are you over-paying for too little? Have your say below!

"*" indicates required fields

What's the main reason you picked this host?*
How happy are you with your host?*

OPTIONAL: If you'd like to receive the results of this survey, please enter your details below.