Is it possible to remove the website field from the comment section?

Posted in: Newspaper
Post count: 34

Is it possible to remove the website field from the comment section of a logged out user?

Post count: 35

Try this in a file functions.php

add_filter('comment_form_default_fields', 'mytheme_remove_url');

function mytheme_remove_url($arg) {
$arg['url'] = '';
return $arg;
}

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