diff --git a/src/wp-admin/includes/class-wp-list-table.php b/src/wp-admin/includes/class-wp-list-table.php
index cdd07f076d..3faf5d46e0 100644
a
|
b
|
class WP_List_Table { |
625 | 625 | $post_type |
626 | 626 | ) |
627 | 627 | ); |
628 | | |
629 | | /** |
630 | | * Filters the 'Months' drop-down results. |
631 | | * |
632 | | * @since 3.7.0 |
633 | | * |
634 | | * @param object[] $months Array of the months drop-down query results. |
635 | | * @param string $post_type The post type. |
636 | | */ |
637 | | $months = apply_filters( 'months_dropdown_results', $months, $post_type ); |
638 | 628 | } |
639 | 629 | |
| 630 | /** |
| 631 | * Filters the 'Months' drop-down results. |
| 632 | * |
| 633 | * @since 3.7.0 |
| 634 | * |
| 635 | * @param object[] $months Array of the months drop-down query results. |
| 636 | * @param string $post_type The post type. |
| 637 | */ |
| 638 | $months = apply_filters( 'months_dropdown_results', $months, $post_type ); |
| 639 | |
640 | 640 | $month_count = count( $months ); |
641 | 641 | |
642 | 642 | if ( ! $month_count || ( 1 == $month_count && 0 == $months[0]->month ) ) { |