| 1437 | /** |
| 1438 | * Filters the arguments used in the top level comments query. |
| 1439 | * |
| 1440 | * @since 5.6.0 |
| 1441 | * |
| 1442 | * @see WP_Comment_Query::__construct() |
| 1443 | * |
| 1444 | * @param array $top_level_args { |
| 1445 | * The top level query arguments for the comments template. |
| 1446 | * |
| 1447 | * @type bool $count Whether to return a comment count. |
| 1448 | * @type string|array $orderby The field(s) to order by. |
| 1449 | * @type int $post_id The post ID. |
| 1450 | * @type string|array $status The comment status to limit results by. |
| 1451 | * } |
| 1452 | */ |
| 1453 | $top_level_args = apply_filters( 'comments_template_top_level_query_args', $top_level_args ); |
| 1454 | |