Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shemul49rmc/7213397 to your computer and use it in GitHub Desktop.
Save shemul49rmc/7213397 to your computer and use it in GitHub Desktop.
Customize the Genesis Comment Button Text
//**Customize the Genesis Comment Button Text**http://iamshemul.com/?p=2395**//
function change_comment_form_submit_button_text( $defaults ) {
$defaults['label_submit'] = 'Submit Comment';
return $defaults;
}
add_filter( 'comment_form_defaults', 'change_comment_form_submit_button_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment