How to customize Comment Count Text in wordpress

Some people asked me about changing the default wordpress comment template and comment count text. If you are wordpress developer than it is easy.

customize Comment Count Text in wordpress

You can customize the text for displaying comments number or count inside loop. This is just a simple template edit however it is extremely useful if you are creating a theme that is not a traditional theme or you wanted to inject a little bit of personality into the site.

You just need to copy and paste following code into comments.php file.

Using  following code you can change:

<?php
    echo get_comments_number_text( "No thoughts, yet", "One Thought only", "% thoughts");
?>

wordpress-comment-count

There are some useful articles about wordpress comments customization: