WordPress - 如何显示条目中的注释总数?

时间:2010-07-21 13:38:13

标签: php wordpress

我在静态HTML页面上显示WordPress内容,该页面不在WordPress内容中。它工作得非常好,我只需要一个元素来完成这个集合。

我正在使用此代码:

<?php while (have_posts()): the_post(); ?>
  <h5><?php the_title(); ?></h5>
  <p class="blog-info"><?php the_time('m'); ?>.<?php the_time('j'); ?>.<?php the_time('y'); ?> | <a class="comment-ref">13 Comments</a></p>
<?php endwhile; ?>

我需要的最后一部分是您可以看到与该条目相关的评论总数的链接的部分。像这样:

<a class="comment-ref">13 Comments</a>

我对WordPress不太熟悉,所以我可以使用一些帮助来获取最后一段代码。

谢谢!

2 个答案:

答案 0 :(得分:4)

你需要这样的东西......

<a class="comments-ref" href="<?php comments_link(); ?>">
  <?php comments_number('0', '1', '%'); ?> Comments
</a>

答案 1 :(得分:1)

您可能感兴趣的是an article。 :)

e:干得好,JAG2007。