acc_close_post_statuses
Filters the post statuses eligible for closing.
Drafts, auto-drafts and trashed posts are excluded by default so a post is not published with its discussion already closed.
Type: filter
Since: 3.2.0
Source: includes/features/class-comments.php line 735
Parameters
| Type | Name | Description |
|---|---|---|
array |
$statuses |
Post statuses eligible for closing. |
string |
$type |
Discussion type. Either comment or ping. |
Usage
add_filter( 'acc_close_post_statuses', function($statuses, $type) {
// ...
return $statuses;
} );