spammed_comment
Fires immediately after a comment is marked as Spam.
Usage
add_action( 'spammed_comment', 'wp_kama_spammed_comment_action', 10, 2 ); /** * Function for `spammed_comment` action-hook. * * @param int $comment_id The comment ID. * @param WP_Comment $comment The comment marked as spam. * * @return void */ function wp_kama_spammed_comment_action( $comment_id, $comment ){ // action... }
- $comment_id(int)
- The comment ID.
- $comment(WP_Comment)
- The comment marked as spam.
Changelog
Since 2.9.0 | Introduced. |
Since 4.9.0 | Added the $comment parameter. |
Where the hook is called
spammed_comment
wp-includes/comment.php 1661
do_action( 'spammed_comment', $comment->comment_ID, $comment );