Home › Support Forums › Theme Support › Enlightenment › Disclaimer before comment form? › Reply To: Disclaimer before comment form?
Daniel Tara
Keymaster
You can add a disclaimer with the following function:
add_filter( 'comment_form_defaults', 'mytheme_comment_form_disclaimer' ); function mytheme_comment_form_disclaimer( $fields ) { $fields['comment_notes_before'] = 'Disclaimer text goes here.'; return $fields; }