如何在Drupal中的一页上显示带有注释的多个节点以及每个节点的注释形式?
为了在自定义页面上显示多个节点,我使用了 node_view_multiple($nodes, $view_mode = 'full')
,但节点显示时没有注释和注释形式。
如何在自定义页面上显示带有注释的多个节点以及每个节点的注释表单?
To display multiple nodes on a custom page, I used node_view_multiple($nodes, $view_mode = 'full')
, but nodes are shown without comments and comment form.
How do I show multiple nodes with comments and a comment form for each node on a custom page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否考虑过使用“视图模块”来解决这个问题?这可能是一个又好又快的解决方案。
Have you considered solving this with the "Views Module"? It could be a nice and fast solution.
在自定义模块中使用
hook_node_view
:In custom module use
hook_node_view
: