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