Skip to content

Instantly share code, notes, and snippets.

@joshuafredrickson
Last active December 15, 2015 15:59
Show Gist options
  • Save joshuafredrickson/5286107 to your computer and use it in GitHub Desktop.
Save joshuafredrickson/5286107 to your computer and use it in GitHub Desktop.
WordPress - Genesis: Change "Speak your mind" comment title
/** Modify the speak your mind text */
add_filter( 'genesis_comment_form_args', 'op_comment_form_args' );
function op_comment_form_args($args) {
$args['title_reply'] = 'Leave a Comment';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment