Skip to content

Instantly share code, notes, and snippets.

@emilstahl
Created February 1, 2015 15:51
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 emilstahl/6123e965d7a6efc1b629 to your computer and use it in GitHub Desktop.
Save emilstahl/6123e965d7a6efc1b629 to your computer and use it in GitHub Desktop.
Remove HTML WordPress comments
add_filter( 'comment_form_defaults', 'remove_comment_form_allowed_tags' );
function 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