Skip to content

Instantly share code, notes, and snippets.

@topleague
Last active June 28, 2017 08:49
Show Gist options
  • Save topleague/b6cff76b6c7f9a8b4e439a905d60b16c to your computer and use it in GitHub Desktop.
Save topleague/b6cff76b6c7f9a8b4e439a905d60b16c to your computer and use it in GitHub Desktop.
Modify Submit Button in Genesis
//* Customize the submit button text in comments
add_filter( 'comment_form_defaults', 'topleague_comment_submit_button' );
function topleague_comment_submit_button( $defaults ) {
$defaults['label_submit'] = __( 'Post Comment');
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment