Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
Created October 29, 2013 12:59
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 shemul49rmc/7214162 to your computer and use it in GitHub Desktop.
Save shemul49rmc/7214162 to your computer and use it in GitHub Desktop.
Modify the Speak Your Mind title text
//* Modify the speak your mind title in comments*http://iamshemul.com/?p=2395*//
add_filter( 'comment_form_defaults', 'sp_comment_form_defaults' );
function sp_comment_form_defaults( $defaults ) {
$defaults['title_reply'] = __( 'Leave a Comment' );
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment