Skip to content

Instantly share code, notes, and snippets.

@nickcernis
Created December 4, 2014 13:04
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nickcernis/400fc8a6a27daf07b7bc to your computer and use it in GitHub Desktop.
Save nickcernis/400fc8a6a27daf07b7bc to your computer and use it in GitHub Desktop.
Add or edit the notes before the WordPress comments form
<?php // remove this line
// Add or edit the notes before the comments form
add_filter( 'comment_form_defaults', 'sp_add_comment_form_before' );
function sp_add_comment_form_before( $defaults ) {
$defaults['comment_notes_before'] = '<p class="comment-notes">Your email address will not be published. Required fields are marked <span class="required">*</span></p>';
return $defaults;
}
@osbre
Copy link

osbre commented Jun 1, 2020

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment