Simple wordpress function to remove website field in wordpress comments, easy way to remove url field in wordpress comments without plugin, just 5 lines.

Remove Website Field

Using comment_form_default_fields filter, we will remove website field in wordpress comments,
copy “Remove URL Field Function” code and paste it in functions.php file in your wordpress theme.

Remove URL Field Function

function WPTime_remove_url_input_from_comment_fields($fields){
    $fields['url'] = null;
    return $fields;
}
add_filter('comment_form_default_fields','WPTime_remove_url_input_from_comment_fields');

Another Way

Using CSS, we will hide URL field in wordpress comments, copy this CSS code and paste it in style.css file in your wordpress theme:

#respond #url{display:none;}