在 drupal 中显示 RSS feed 的视图计数

发布于 2024-12-06 10:11:30 字数 338 浏览 0 评论 0原文

我有一个 drupal 网站,我想向 RSS 提要添加一个视图计数,

我发现应该这样做的是这段代码 但到目前为止,我得到一个空值

<?php print $node->links['statistics_counter']['title']; ?>

,并且无法运行任何 SQL 查询,因为我无法匹配它的节点。

我也尝试这样做:

print_r($node->links['statistics_counter']);

而且我得到一个空数组,

感谢任何帮助

i have a drupal site and i want to add to the RSS feed a view count

what that i found that should do this is this code
but so far i get a null value

<?php print $node->links['statistics_counter']['title']; ?>

and i can't run any SQL query because i can't match the nodes for it.

i also tried to do:

print_r($node->links['statistics_counter']);

and also i get an empty array

any help is appreciated

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

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

发布评论

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

评论(1

浮光之海 2024-12-13 10:11:30

这应该有效: links['statistics_counter']['title']; ?>。确保以预告片模式打印,而不是在完整视图下打印 ($page == 1)。
如果没有,请访问 http://YOURSITE/admin/reports/settings 并启用访问日志。
ps 此外,Views 模块还提供更强大的提要页面,其中包含任何数据和过滤器。

This should work: <?php print $node->links['statistics_counter']['title']; ?>. Be sure that you print it in teaser mode, not in full view ($page == 1).
If not, visit http://YOURSITE/admin/reports/settings and enable access log.
p.s. Also Views module provide more powerfull feed page with any data and filters.

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