Created
February 7, 2016 08:23
-
-
Save saivarunk/5f68e640df1778b9d76e 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
//* 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