Skip to content

Instantly share code, notes, and snippets.

@pasadamedia
Created November 28, 2014 06:46
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 pasadamedia/642d57a4258835c4a9a6 to your computer and use it in GitHub Desktop.
Save pasadamedia/642d57a4258835c4a9a6 to your computer and use it in GitHub Desktop.
Remove allowed tags notice on comment form.
/**
* Remove allowed tags notice on comment form.
*
*/
function pasada_remove_comment_form_allowed_tags( $defaults ) {
$defaults['comment_notes_after'] = '';
return $defaults;
}
add_filter( 'comment_form_defaults', 'pasada_remove_comment_form_allowed_tags' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment