Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Last active March 18, 2017 02:36
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/7c188f685f187421911b to your computer and use it in GitHub Desktop.
Save Kaiderella/7c188f685f187421911b 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', 'custom_comment_form_submit');
function custom_comment_form_submit($arg) {
$arg['label_submit'] = 'PHẢN HỒI';
return $arg;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment