Reply To: Disclaimer before comment form?

#20907
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;
}