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
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
}