spam_comment хук-событиеWP 2.9.0

Fires immediately before a comment is marked as Spam.

Использование

add_action( 'spam_comment', 'wp_kama_spam_comment_action', 10, 2 );

/**
 * Function for `spam_comment` action-hook.
 * 
 * @param int        $comment_id The comment ID.
 * @param WP_Comment $comment    The comment to be marked as spam.
 *
 * @return void
 */
function wp_kama_spam_comment_action( $comment_id, $comment ){

	// action...
}
$comment_id(int)
The comment ID.
$comment(WP_Comment)
The comment to be marked as spam.

Список изменений

С версии 2.9.0 Введена.
С версии 4.9.0 Added the $comment parameter.

Где вызывается хук

wp_spam_comment()
spam_comment
wp-includes/comment.php 1643
do_action( 'spam_comment', $comment->comment_ID, $comment );

Где используется хук в WordPress

Использование не найдено.