Remove website field from the comment form
-
Hi,
I am working on my localhost and want to remove website field from the comment form by add_filter(). Please let me know if it is possible. I have used this filter
function remove_comment_website_field($fields) {
unset($fields[‘url’]);
return $fields;
}
add_filter(‘comment_form_default_fields’, ‘remove_comment_website_field’);but nothing changes. So I think its not working.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove website field from the comment form’ is closed to new replies.