Created
June 30, 2013 11:12
-
-
Save samediamba/5894789 to your computer and use it in GitHub Desktop.
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
<?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