Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other WordPress Question Re: WordPress Question

#133025
Ransom
Member

In this code

function add_check_boxes_to_comment_form( $fields )
{
$fields = ‘

‘;
return $fields;
}
add_filter(‘comment_form_default_fields’,’add_check_boxes_to_comment_form’);

Will this return a column in the comments admin area or will it be put into the comment? If it does not add a column how can I get it to add a column.

Thanks