Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Last active June 3, 2022 02:14
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 Kaiderella/346a03cc7470a7133d5e to your computer and use it in GitHub Desktop.
Save Kaiderella/346a03cc7470a7133d5e to your computer and use it in GitHub Desktop.
Tùy biến nút Submit trong Genesis
//* Tùy biến nút Submit trong Genesis
add_filter( 'comment_form_defaults', 'sp_comment_submit_button' );
function sp_comment_submit_button( $defaults ) {
$defaults['label_submit'] = __( 'Đăng bình luận', 'custom' );
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment