diff --git a/src/wp-admin/includes/class-wp-comments-list-table.php b/src/wp-admin/includes/class-wp-comments-list-table.php
index 872d101cb0..bae551f08e 100644
|
a
|
b
|
class WP_Comments_List_Table extends WP_List_Table { |
| 396 | 396 | if ( 'top' === $which ) { |
| 397 | 397 | ob_start(); |
| 398 | 398 | |
| 399 | | $this->comment_status_dropdown( $comment_type ); |
| | 399 | $this->comment_type_dropdown( $comment_type ); |
| 400 | 400 | |
| 401 | 401 | /** |
| 402 | 402 | * Fires just before the Filter submit button for comment types. |
| … |
… |
class WP_Comments_List_Table extends WP_List_Table { |
| 475 | 475 | * Displays a comment type drop-down for filtering on the Comments list table. |
| 476 | 476 | * |
| 477 | 477 | * @since 5.5.0 |
| | 478 | * @since 5.6.0 Renamed from `comment_status_dropdown()` to `comment_type_dropdown()`. |
| 478 | 479 | * |
| 479 | 480 | * @param string $comment_type The current comment type slug. |
| 480 | 481 | */ |
| 481 | | protected function comment_status_dropdown( $comment_type ) { |
| | 482 | protected function comment_type_dropdown( $comment_type ) { |
| 482 | 483 | /** |
| 483 | 484 | * Filters the comment types shown in the drop-down menu on the Comments list table. |
| 484 | 485 | * |