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
| Type | Name | Description |
|---|---|---|
int | $comments_closed | Number of posts whose comments were closed. |
int | $pings_closed | Number of posts whose pings were closed. |
Usage
add_action( 'acc_comments_processed', function($comments_closed, $pings_closed) {
// ...
} );