diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php
index 9be84ae2e5..bd4b211a54 100644
a
|
b
|
class WP_Posts_List_Table extends WP_List_Table { |
1576 | 1576 | $users_opt['show_option_none'] = __( '— No Change —' ); |
1577 | 1577 | } |
1578 | 1578 | |
| 1579 | /** |
| 1580 | * Filters the arguments used to generate the Quick Edit authors drop-down. |
| 1581 | * |
| 1582 | * @since 5.3.0 |
| 1583 | * |
| 1584 | * @see wp_dropdown_users() |
| 1585 | * |
| 1586 | * @param array $users_opt An array of arguments for wp_dropdown_users function. |
| 1587 | * @param bool $bulk A boolean to know if it's a bulk action or not. |
| 1588 | */ |
| 1589 | $users_opt = apply_filters( 'quick_edit_authors_query_args', $users_opt, $bulk ); |
| 1590 | |
1579 | 1591 | $authors = wp_dropdown_users( $users_opt ); |
1580 | 1592 | if ( $authors ) : |
1581 | 1593 | $authors_dropdown = '<label class="inline-edit-author">'; |