Skip to content

Instantly share code, notes, and snippets.

@saivarunk
Created February 7, 2016 08:23
Show Gist options
  • Save saivarunk/5f68e640df1778b9d76e to your computer and use it in GitHub Desktop.
Save saivarunk/5f68e640df1778b9d76e to your computer and use it in GitHub Desktop.
//* Customize the submit button text in comments
add_filter( 'comment_form_defaults', 'sv_comment_submit_button' );
function sv_comment_submit_button( $defaults ) {
$defaults['label_submit'] = __( 'Submit', 'custom' );
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment