Remove URL / Website field from WordPress comment form

To remove the “website” field from the WordPress comment form (without hacking it) add the following code to your theme’s function.php file.

//Remove comments url field
function remove_comment_form_url_field( $field ){
	return false;
}
add_filter( 'comment_form_field_url', 'remove_comment_form_url_field' );