Created
February 7, 2016 08:25
-
-
Save saivarunk/a8d164cfcfbf6500364a to your computer and use it in GitHub Desktop.
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
//* 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