Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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