Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save samediamba/5894789 to your computer and use it in GitHub Desktop.
Save samediamba/5894789 to your computer and use it in GitHub Desktop.
<?php
/*** Change default comment text in StudioPress Genesis Courtesy of WP Snacks: http://goo.gl/Dp8Lv**/
function change_default_comment_text($args) {
$args['title_reply'] = 'Have your Say';
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