如何在Drupal 7的节点视图页面中使用show / hide选项显示每个用户注释的回复计数?

时间:2013-06-13 08:19:41

标签: drupal-7 drupal-comments

Now, I am having comments section like this in node view page.

  Comment 1
    comment 11
    comment 12
  Comment 2
  Comment 3
    comment 31
    comment 32
    comment 33

But, I would to show this with show/hide option for replied comments with replies count. like below

  Comment 1
    show/hide 2 replies
    ------------------
    | comment 11     |
    | comment 12     | 
    ------------------
  Comment 2
  Comment 3
    show/hide  3 replies
    ---------------
    |  comment 31 |
    |  comment 32 |
    |  comment 33 |
    ---------------

1 个答案:

答案 0 :(得分:0)

您可以使用

访问模板中的评论数量
<?php print $comment_count; ?>

对于Show和Hide,关于简单的.hide()和.show()jQuery函数是什么?