Skip to content

Instantly share code, notes, and snippets.

@nhatdongnguyen
Created April 1, 2014 10:43
Show Gist options
  • Save nhatdongnguyen/aa827f6a1ede175958c0 to your computer and use it in GitHub Desktop.
Save nhatdongnguyen/aa827f6a1ede175958c0 to your computer and use it in GitHub Desktop.
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