WordPress – How to remove comments off in posts?

Quite often for theme developers, it could be frustrating to show “comments off” in blog posts.  The reason why comments off appear is because of this comments code, which shows the comment link and total count.

<?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>

It is very simple to fix, just use the comments_number() function instead of comments_popup_link() to remove the comments off text.

<?php comments_number('No Comments', '1 Comment ', '% Comments'); ?>