Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created June 10, 2014 16:19
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 kraftbj/5e55da0a04435765591d to your computer and use it in GitHub Desktop.
Save kraftbj/5e55da0a04435765591d to your computer and use it in GitHub Desktop.
Modify default "Leave a Reply" in WordPress
function alter_my_comment_form( $fields ) {
$fields['title_reply'] = "Tell me something good!";
$fields['title_reply_to'] = "Tell something good to %s";
return $fields;
}
add_filter('comment_form_defaults', 'alter_my_comment_form');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment