Drupal 7 获取节点评论
在 Drupal 7 中是否有一种简单的方法以编程方式获取节点的注释?
Is there an easy way to get the comments of a node programmatically in Drupal 7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 Drupal 7 中是否有一种简单的方法以编程方式获取节点的注释?
Is there an easy way to get the comments of a node programmatically in Drupal 7?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
查看函数 comment_get_thread(),它可能对你有用。
Check out the function comment_get_thread(), it may be of use to you.
如果您不想编写代码,则可以使用面板的节点模板覆盖该节点,并通过在其中创建变体,您可以在变体中添加注释线程。我认为这是一种非常简单的方法。
If you don't want to write a code then you can override the node with The panel's node template and by creating a variant in it you can add comment thread in the variant. And I think it is very easier way to do this.
在 Drupal 7 中,您可以使用以下代码使用节点 ID 获取节点的所有注释
在 Drupal 6 中,您可以使用 comment_render() ;
In Drupal 7 you can use the below code to get all the comments of a node using node ID
In Drupal 6 you can use the comment_render() ;