untrashed_comment action-hook . WP 2.9.0
Fires immediately after a comment is restored from the Trash.
Usage
add_action( 'untrashed_comment', 'action_function_name_4489', 10, 2 ); function action_function_name_4489( $comment_id, $comment ){ // action... }
- $comment_id(int)
- The comment ID.
- $comment(WP_Comment)
- The untrashed comment.
Changelog
Since 2.9.0 | Introduced. |
Since 4.9.0 | Added the $comment parameter. |
Where the hook is called
untrashed_comment
wp-includes/comment.php 1631
do_action( 'untrashed_comment', $comment->comment_ID, $comment );