WordPress插件,捕获评论插入

发布于 2024-11-27 14:05:30 字数 103 浏览 0 评论 0原文

是否有一个钩子可以捕获评论插入帖子的那一刻?

在 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 技术交流群。

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

发布评论

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

评论(1

桜花祭 2024-12-04 14:05:30

有一个名为“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.)

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