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.
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.
Hi sir thank you for sharing this information, I have been remove website option in my wordpress website 😊and thanks to you for helping me
Hi! Thank you so much for this information as this is the problem that I was constantly encountering. Thanks!