Recent

acc_comments_processed action

acc_comments_processed

Fires after comments and pings have been processed by the cron.

Type: action
Since: 3.1.0
Source: includes/features/class-comments.php line 100

Parameters

TypeNameDescription
int$comments_closedNumber of posts whose comments were closed.
int$pings_closedNumber of posts whose pings were closed.

Usage

add_action( 'acc_comments_processed', function($comments_closed, $pings_closed) {
    // ...
} );