trash_comment

动作钩子
do_action( 'trash_comment', $comment->comment_ID, $comment )
参数
  • (string) $comment_id The comment ID as a numeric string.
    Required:
  • (WP_Comment) $comment The comment to be trashed.
    Required:
定义位置
相关勾子
untrash_commenttrashed_commentuntrashed_commentget_commentedit_comment
相关方法
wp_trash_commentwp_untrash_commentthe_commentget_commentwp_trash_post_commentsget_comments
引入
4.9.0
弃用
-

trash_comment – 这是一个WordPress的动作,当一个评论被移到垃圾桶时被触发。trash_comment动作是在评论被移到垃圾桶之前触发的,可以用来执行额外的动作,例如发送电子邮件通知或更新其他数据。这个动作对于跟踪被移到垃圾桶的评论,以及根据需要执行额外的动作非常有用。它可以和trashed_comment动作一起使用,在评论被移到垃圾桶之前和之后都可以执行动作。

在评论被送入回收站之前立即触发。

do_action( 'trash_comment', $comment->comment_ID, $comment );

常见问题

FAQs
查看更多 >