Home › Forums › Other › WordPress Question › Re: WordPress Question
April 24, 2013 at 10:54 am
#133025
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