Modify the Comments Headline Text in Genesis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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