comment_spam_comment action-hookWP 2.7.0

Fires when the status of a specific comment type is in transition.

The dynamic portions of the hook name, $new_status, and $comment->comment_type, refer to the new comment status, and the type of comment, respectively.

Typical comment types include 'comment', 'pingback', or 'trackback'.

This is one of the variants of the dynamic hook comment_(new_status)_(comment_type)

Usage

add_action( 'comment_spam_comment', 'wp_kama_comment_spam_action', 10, 2 );

/**
 * Function for `comment_spam_comment` action-hook.
 * 
 * @param string     $comment_id The comment ID as a numeric string.
 * @param WP_Comment $comment    Comment object.
 *
 * @return void
 */
function wp_kama_comment_spam_action( $comment_id, $comment ){

	// action...
}
$comment_id(string)
The comment ID as a numeric string.
$comment(WP_Comment)
Comment object.

Changelog

Since 2.7.0 Introduced.

Where the hook is called

wp_transition_comment_status()
comment_spam_comment
wp-includes/comment.php 1845
do_action( "comment_{$new_status}_{$comment->comment_type}", $comment->comment_ID, $comment );

Where the hook is used in WordPress

Usage not found.