Skip to content

Instantly share code, notes, and snippets.

@nciske
Last active August 29, 2015 13:57
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 nciske/9453465 to your computer and use it in GitHub Desktop.
Save nciske/9453465 to your computer and use it in GitHub Desktop.
<?php
//* Modify comments title text in comments
add_filter( 'genesis_title_comments', 'sp_genesis_title_comments' );
function sp_genesis_title_comments() {
ob_start();
comments_number( 'No Comments', '1 Comment', '% Comments' );
$title = '<h3>' . ob_get_contents() . '</h3>';
ob_end_clean();
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment