Skip to content

Instantly share code, notes, and snippets.

@saivarunk
Created February 7, 2016 08:21
Show Gist options
  • Save saivarunk/81d8839a3f890d3f15cb to your computer and use it in GitHub Desktop.
Save saivarunk/81d8839a3f890d3f15cb to your computer and use it in GitHub Desktop.
//* Remove comment form allowed tags
add_filter( 'comment_form_defaults', 'sv_remove_comment_form_allowed_tags' );
function sv_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