Skip to content

Instantly share code, notes, and snippets.

@topleague
Created June 28, 2017 07:42
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/7b2a28a09795efcc9265cdb9b4870cf4 to your computer and use it in GitHub Desktop.
Save topleague/7b2a28a09795efcc9265cdb9b4870cf4 to your computer and use it in GitHub Desktop.
Modify the Comments Headline Text in Genesis
//* Modify comments title text in comments
add_filter( 'genesis_title_comments', 'topleague_genesis_title_comments' );
function topleague_genesis_title_comments() {
$title = '<h3>What They Say</h3>';
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment