Can you tell me if there is a hook I can use that is fired when a comment is marked as SPAM?Β I need this to trigger some additional custom action on the website for further combating SPAM.Β Thanks.
-- Aaron
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpDiscuz community!
Merry Christmas and Happy Holidays! π
Can you tell me if there is a hook I can use that is fired when a comment is marked as SPAM?Β I need this to trigger some additional custom action on the website for further combating SPAM.Β Thanks.
-- Aaron
You can use this one:Β
add_action( 'spammed_comment', 'my_function', 10, 2 );
function my_function($comment_ID, $comment) {
// do whatever
}