Home › Forums › Other › WordPress Question › Re: WordPress Question
April 23, 2013 at 9:08 pm
#132951
Participant
If you are using `` to generate your comment form. You could hook into `comment_form_default_fields` and add all the necessary fields. Like so:
function add_check_boxes_to_comment_form( $fields )
{
$fields = ‘
‘;
return $fields;
}
add_filter(‘comment_form_default_fields’,’add_check_boxes_to_comment_form’);
ETA: This goes to `functions.php` file.