Skip to content

Instantly share code, notes, and snippets.

@topleague
Created June 28, 2017 07:13
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 topleague/ed9b9b7ac712dd36c1c3c2ec627b2791 to your computer and use it in GitHub Desktop.
Save topleague/ed9b9b7ac712dd36c1c3c2ec627b2791 to your computer and use it in GitHub Desktop.
Removed Allowed Tags in Genesis
//* Remove comment form allowed tags
add_filter( 'comment_form_defaults', 'topleague_remove_comment_form_allowed_tags' );
function topleague_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