Add comment count to node
Show how many comments have been posted, in Teaser of Full node.
Example: '0 Comments' or '23 Comments'
Snippet:
<?php print $comment_count.' Comment'; if ($comment_count != 1) print 's'; ?>
Nice! How about to link it to the actual nodes comment page? This snippet is useful if you wanted to avoid calling $links, and placing this manually. It's better on system resources if you are SURE you don't have another module putting something like "a node bookmark" in your favorites.
Worked great. Thanks.
I just did
print $comment_count
and it worked great for what I was trying to do.