Created
November 7, 2013 10:49
-
-
Save nutsandbolts/7352728 to your computer and use it in GitHub Desktop.
Change the "Speak Your Mind" header on Genesis comments
This file contains 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
// 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