Unset Wordpress Comment Email Field

saeeddda

New member
XNullUser
Joined
Apr 26, 2022
Messages
2
Reaction score
0
Points
1
NullCash
3
Hey. I cant unset wordpress comment email field. I used this code to unset but dosent work.

add_filter('comment_form_default_fields', 'email_filtered');
function email_filtered($fields){
unset($fields['email']);
return $fields;
}
 
Top