Skip to content

Instantly share code, notes, and snippets.

@topleague
Created June 28, 2017 07:19
Embed
What would you like to do?
Modify Leave a Reply in Genesis
//* Modify the 'Leave a Reply' title in comments
add_filter( 'comment_form_defaults', 'topleague_comment_form_defaults' );
function topleague_comment_form_defaults( $defaults ) {
$defaults['title_reply'] = __( 'Share Your Thoughts' );
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment