Search for: Search Disclaimer before comment form? Viewing 3 posts - 1 through 3 (of 3 total) February 28, 2015 at 5:37 pm February 28, 2015 #20698 MikasParticipant I want to place a disclaimer before the comment form on individual posts in the Enlightenment theme which briefly explains our commenting policy. Is there a hook or similar function that can do this? March 13, 2015 at 7:58 pm March 13, 2015 #20779 MikasParticipant Can anyone help with this? April 11, 2015 at 1:43 am April 11, 2015 #20907 Daniel TaraKeymaster 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; } Viewing 3 posts - 1 through 3 (of 3 total) Tagged: comment form, hooks You must be logged in to reply to this topic.