Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
Created October 29, 2013 12:59
Show Gist options
  • Select an option

  • Save shemul49rmc/7214162 to your computer and use it in GitHub Desktop.

Select an option

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