Skip to content

Instantly share code, notes, and snippets.

@grtaylor2
Created July 24, 2013 17:21
Show Gist options
  • Save grtaylor2/6072596 to your computer and use it in GitHub Desktop.
Save grtaylor2/6072596 to your computer and use it in GitHub Desktop.
Change Default Genesis Comment Tagline "Speak Your Mind"
/* Change default comment Speak Your Mind */
function change_default_comment_text($args) {
$args['title_reply'] = 'Leave a Comment';
return $args;
}
add_filter( 'genesis_comment_form_args', 'change_default_comment_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment