How to remove the website form field from the post comment | WordPress

Опубликовано: 07 Август 2026
на канале: Bishal Guha
56
2

Hi all,
In this video, I've shared a trick about removing the website URL field from the post comment section. Here is the code snippet. Just copy it from here and paste it according to this video:

add_filter('comment_form_default_fields', 'unset_website_field');

function unset_website_field($fields){
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}

Happy coding guys.