Skip to content

Instantly share code, notes, and snippets.

@saivarunk
Created February 7, 2016 08:25
Show Gist options
  • Save saivarunk/a8d164cfcfbf6500364a to your computer and use it in GitHub Desktop.
Save saivarunk/a8d164cfcfbf6500364a to your computer and use it in GitHub Desktop.
//* Modify the speak your mind title in comments
add_filter( 'comment_form_defaults', 'sv_comment_form_defaults' );
function sv_comment_form_defaults( $defaults ) {
$defaults['title_reply'] = __( 'Comments' );
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment