Skip to content

Instantly share code, notes, and snippets.

@nutsandbolts
Created November 7, 2013 10:49
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 nutsandbolts/7352728 to your computer and use it in GitHub Desktop.
Save nutsandbolts/7352728 to your computer and use it in GitHub Desktop.
Change the "Speak Your Mind" header on Genesis comments
// Change default comment text
function nabm_change_comment_text($args) {
$args['title_reply'] = 'Leave a Comment';
return $args;
}
add_filter( 'genesis_comment_form_args', 'nabm_change_comment_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment