Mika MAtikainen
Apr 15, 2020 · 4 min read
How do I remove the Comment URL field from the comment form in WordPress?
function wpsc_remove_comment_fields($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','wpsc_remove_comment_fields');