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');        

Subscribe To Our Newsletter

Join our mailing list to receive the latest news and updates from our team.

You have Successfully Subscribed!

Share This