Last active
December 2, 2015 21:25
-
-
Save cjkoepke/f0d8bbf1b559141207e2 to your computer and use it in GitHub Desktop.
Modify the comment respond title.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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