WordPress插件,捕获评论插入
是否有一个钩子可以捕获评论插入帖子的那一刻?
在 WordPress 文档中,他们说“edit_post”有效,因为该帖子的评论计数已更新,但它不起作用。
谢谢
is there a hook to capture the moment a comment is inserted into a post?
In wordpress docs, they say that 'edit_post' works because the comment count on that post is updated, but it doesn't work.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个名为“wp_insert_comment”的操作钩子,它是从 wp_insert_comment() 调用的。它将评论 ID 和新评论作为对象传递。 (wp-includes/comment.php 第 1245 行。)
There's an action hook called "wp_insert_comment" that's called from
wp_insert_comment()
. It passes the comment id and the new comment as an object. (wp-includes/comment.php on line 1245.)