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 | |
//* Do NOT include the opening php tag shown above. Copy the code shown below. | |
//* Customize the submit button text in comments | |
add_filter( 'comment_form_defaults', 'rm_comment_submit_button' ); | |
function rm_comment_submit_button( $defaults ) { | |
$defaults['label_submit'] = __( 'Submit', 'custom' ); | |
return $defaults; | |
} |