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

#132951
Alen
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.