To correct this, you can use the following PHP code (e.g. in your functions.php file) to notify moderators when a comment has been marked as "not spam":
add_action('comment_spam_to_unapproved', 'dbc_notify_moderator_on_comment_spam_to_unapproved');
function dbc_notify_moderator_on_comment_spam_to_unapproved($comment) {
if (!isset($comment->comment_ID)) { return; }
wp_notify_moderator($comment->comment_ID);
}
0 Comments