使用have_comments()
作用
Example:
<?php if ( have_comments() ) : ?>
<h2 class="has-comments"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php else : ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php endif; ?>