Skip to content

Instantly share code, notes, and snippets.

@topleague
Created June 28, 2017 07:19
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 topleague/c37c2fdb83db21e78c23a6d057aeb53f to your computer and use it in GitHub Desktop.
Save topleague/c37c2fdb83db21e78c23a6d057aeb53f to your computer and use it in GitHub Desktop.
Modify Leave a Reply in Genesis
//* Modify the 'Leave a Reply' title in comments
add_filter( 'comment_form_defaults', 'topleague_comment_form_defaults' );
function topleague_comment_form_defaults( $defaults ) {
$defaults['title_reply'] = __( 'Share Your Thoughts' );
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment