Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davechu/b67892df9a70930c0b96 to your computer and use it in GitHub Desktop.
Save davechu/b67892df9a70930c0b96 to your computer and use it in GitHub Desktop.
add_filter( 'comment_form_defaults', 'dc_remove_comment_form_allowed_tags' );
function dc_remove_comment_form_allowed_tags( $defaults ) {
$defaults['comment_notes_after'] = '';
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment