Last active
December 15, 2015 15:59
-
-
Save joshuafredrickson/5286107 to your computer and use it in GitHub Desktop.
WordPress - Genesis: Change "Speak your mind" comment title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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