如何设置归档帖子标题的样式...但只有那些有评论的帖子吗?

时间:2020-04-04 作者:Pete

我如何为那些有评论的帖子设置归档帖子标题的样式?

1 个回复
SO网友:Neolot

使用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; ?>