remove a website from comments

Posted in: Newspaper
Post count: 46

How do I remove a website from the comments section?

Post count: 37

You can add this below code to your child theme functions.php file or a site specific plugin. It should do the trick.

function disable_comment_url($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','disable_comment_url');

Post count: 46

thank you

Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.