Skip to content

Instantly share code, notes, and snippets.

@cjkoepke
Last active December 2, 2015 21:25
Show Gist options
  • Save cjkoepke/f0d8bbf1b559141207e2 to your computer and use it in GitHub Desktop.
Save cjkoepke/f0d8bbf1b559141207e2 to your computer and use it in GitHub Desktop.
Modify the comment respond title.
<?php
//* Do NOT copy the opening PHP tage
//* Modify the comment respond title
add_filter( 'comment_form_defaults', 'ck_comment_form_title' );
function ck_comment_form_title( $defaults ) {
$defaults[ 'title_reply' ] = __( 'Leave a Reply', CHILD_THEME_TEXT_DOMAIN );
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment