Skip to content

Instantly share code, notes, and snippets.

@AmeliaBriscoe
Created December 11, 2013 23:04
Show Gist options
  • Save AmeliaBriscoe/7920173 to your computer and use it in GitHub Desktop.
Save AmeliaBriscoe/7920173 to your computer and use it in GitHub Desktop.
Customize the Thesis 2.1 Comment Intro Text and use the count feature.
/* Customise the comment intro if there were comments or not */
function comment_intro_replace($text) {
global $wp_query;
$number = (int) count($wp_query->comments_by_type['comment']);
if ($number == 0)
$text = '';
return $text;
}
add_filter('thesis_comments_intro','comment_intro_replace');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment