diff --git a/src/wp-includes/class-wp-comment-query.php b/src/wp-includes/class-wp-comment-query.php
index 25b7fcf..e8eeca1 100644
a
|
b
|
class WP_Comment_Query { |
232 | 232 | * Default empty. |
233 | 233 | * @type string $search Search term(s) to retrieve matching comments for. |
234 | 234 | * Default empty. |
235 | | * @type string $status Comment status to limit results by. Accepts 'hold' |
236 | | * (`comment_status=0`), 'approve' (`comment_status=1`), |
237 | | * 'all', or a custom comment status. Default 'all'. |
| 235 | * @type string|array $status Comment stati to limit results by. Accepts an array |
| 236 | * or space/comma separate list of 'hold' (`comment_status=0`), |
| 237 | * 'approve' (`comment_status=1`), 'all', or a custom |
| 238 | * comment status. Default 'all'. |
238 | 239 | * @type string|array $type Include comments of a given type, or array of types. |
239 | 240 | * Accepts 'comment', 'pings' (includes 'pingback' and |
240 | 241 | * 'trackback'), or anycustom type string. Default empty. |