Skip to content
Monitor live humans, bots, and datacenters Botcrawl Edge Try Edge Free
Search Engine Optimization

How To Remove The Website URL Option From WordPress Comments

By default WordPress (with exceptions) gives visitors the option to leave a URL or their “website” when leaving comments.

Website In WordPress Comments

In some cases the “website” option in WordPress comments is not necessarily practical. Especially if you prefer for no one to leave third party URLs which can potentially harm your WordPress website. Luckily there’s a simple PHP snippet that will remove the website URL field from WordPress comments.

Copy and paste the PHP snippet below to your functions.php file.

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

Depending on the style of your WordPress theme, your comment section will now appear similar to the image below; only showing the options for visitors to leave their name, email address, and comment.

Remove Website URL Option In WordPress Comments

Sean Doyle

Sean is a tech author and security researcher with more than 20 years of experience in cybersecurity, privacy, malware analysis, analytics, and online marketing. He focuses on clear reporting, deep technical investigation, and practical guidance that helps readers stay safe in a fast-moving digital landscape. His work continues to appear in respected publications, including articles written for Private Internet Access. Through Botcrawl and his ongoing cybersecurity coverage, Sean provides trusted insights on data breaches, malware threats, and online safety for individuals and businesses worldwide.

2 Comments

Leave a Reply

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