Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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