在 drupal 中显示 RSS feed 的视图计数
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效:
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.