Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. //* Customize the submit button text in comments
  2. add_filter( 'comment_form_defaults', 'topleague_comment_submit_button' );
  3. function topleague_comment_submit_button( $defaults ) {
  4.  
  5. $defaults['label_submit'] = __( 'Submit', 'Post Comment' );
  6. return $defaults;
  7.  
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement