untrash_comment
Fires immediately before a comment is restored from the Trash.
Использование
add_action( 'untrash_comment', 'wp_kama_untrash_comment_action', 10, 2 ); /** * Function for `untrash_comment` action-hook. * * @param string $comment_id The comment ID as a numeric string. * @param WP_Comment $comment The comment to be untrashed. * * @return void */ function wp_kama_untrash_comment_action( $comment_id, $comment ){ // action... }
- $comment_id(строка)
- The comment ID as a numeric string.
- $comment(WP_Comment)
- The comment to be untrashed.
Список изменений
С версии 2.9.0 | Введена. |
С версии 4.9.0 | Added the $comment parameter. |
Где вызывается хук
untrash_comment
wp-includes/comment.php 1611
do_action( 'untrash_comment', $comment->comment_ID, $comment );