Remove the Website Field from WordPress Comment

In this tutorial, we will introduce the way to remove the website field from wordpress comment.

wordpress add comments without website url field

When you plan to add a comment on a wordpress site, you have to input a website url. However, if you plan to remove it, you can follow code below.

1. Open your theme functions.php and add code below

function cs_remove_comment_website_fields($fields) {

   unset($fields['url']);

   return $fields;

}

add_filter('comment_form_default_fields','cs_remove_comment_website_fields');

Then save it, you will find the website url filed disappear from comment panel.