trash_comment action-hook . WP 2.9.0
Fires immediately before a comment is sent to the Trash.
Usage
add_action( 'trash_comment', 'action_function_name_6164', 10, 2 ); function action_function_name_6164( $comment_id, $comment ){ // action... }
- $comment_id(int)
- The comment ID.
- $comment(WP_Comment)
- The comment to be trashed.
Changelog
Since 2.9.0 | Introduced. |
Since 4.9.0 | Added the $comment parameter. |
Where the hook is called
trash_comment
wp-includes/comment.php 1563
do_action( 'trash_comment', $comment->comment_ID, $comment );