Remove URL Field from Comment Form
Removes the website URL field from the default WordPress comment form to reduce spam.
PHPby SnipCraft
php
<?php
add_filter( 'comment_form_default_fields', 'scseed_remove_comment_url_field' );
if ( ! function_exists( 'scseed_remove_comment_url_field' ) ) {
function scseed_remove_comment_url_field( $fields ) {
unset( $fields['url'] );
return $fields;
}
}#comments#forms#frontend#spam