Afficher le nombre de commentaires

Dans wordpress, rien de plus simple pour afficher le nombre de commentaires:

<?php

$num_comments = get_comments_number();
echo "Commentaire: ". "<strong>" .$num_comments . "</strong>";
?>

Pour afficher le pluriel, une petite condition:

  <?php

$num_comments = get_comments_number();
if ( comments_open() ) {
if ( $num_comments == 0 ) {
echo "Commentaire : ". "<strong>" .$num_comments . "</strong>";
}else if( $num_comments > 1 ) {
echo "Commentaires : ". "<strong>" .$num_comments . "</strong>";
}
}
?>