Skip to content

Instantly share code, notes, and snippets.

@norcross
Created July 19, 2013 16:41
Show Gist options
  • Save norcross/6040586 to your computer and use it in GitHub Desktop.
Save norcross/6040586 to your computer and use it in GitHub Desktop.
remove comment notes field
<?php
function no_comment_notes($fields) {
$fields['comment_notes_after'] = '';
return $fields;
}
add_filter('comment_form_defaults', 'no_comment_notes');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment