Drupal 7:Zen 主题,在节点上显示评论计数

发布于 2024-11-29 18:53:50 字数 56 浏览 1 评论 0 原文

查看预告片时,如何在节点标题附近显示评论数量? 我想在预告片标题旁边制作一个小气泡,显示评论数量。

How do I display the number of comments near the title of the node when viewing the teaser?
I want to make a little bubble next tot the title in the teaser displaying the number of comments.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

病女 2024-12-06 18:53:50

在 Drupal 7 中,您可以通过打印变量 $comment_count 轻松打印评论数量。要仅为预告片打印它,您可以在打印之前检查 $view_mode 变量。

在您的node.tpl.php中(或者如果您已经为您的内容类型创建了自定义模板,例如node--[your-content-type-name].tpl.php,请使用它),只需添加类似以下内容您希望评论计数显示的位置:

if ($view_mode=='teaser'):
   print $comment_count;
endif;

不知道您的气泡,但如果您指的是工具提示,我一直使用 qTip 模块 http://drupal.org/project/qtip

In Drupal 7 you can easily print out the number of comments by printing out the variable $comment_count. To print it out only for the teaser you can check the $view_mode variable before printing.

In your node.tpl.php (or if you have created a custom template for your content type such as node--[your-content-type-name].tpl.php, use that), just add something like the following at the position you want your comment count to show:

if ($view_mode=='teaser'):
   print $comment_count;
endif;

Don't know about your bubble, but if you mean a tooltip, I've always used qTip module for that http://drupal.org/project/qtip

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文