Skip to content

Instantly share code, notes, and snippets.

@topleague
Last active August 6, 2017 08:37
Embed
What would you like to do?
Add or remove notes after the comment box in Genesis
// Add or remove notes after the comment box
add_filter( 'comment_form_defaults', 'topleague_remove_comment_form_allowed_tags' );
function topleague_remove_comment_form_allowed_tags( $defaults ) {
$defaults['comment_notes_after'] = 'Enter the Following Details';
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment