diff --git a/src/wp-admin/includes/class-wp-posts-list-table.php b/src/wp-admin/includes/class-wp-posts-list-table.php
index a7d4748840..4195bc3172 100644
a
|
b
|
class WP_Posts_List_Table extends WP_List_Table { |
1589 | 1589 | $users_opt['show_option_none'] = __( '— No Change —' ); |
1590 | 1590 | } |
1591 | 1591 | |
| 1592 | /** |
| 1593 | * Filters the arguments used to generate the Quick Edit authors drop-down. |
| 1594 | * |
| 1595 | * @since 5.6.0 |
| 1596 | * |
| 1597 | * @see wp_dropdown_users() |
| 1598 | * |
| 1599 | * @param array $users_opt An array of arguments for wp_dropdown_users function. |
| 1600 | * @param bool $bulk A boolean to know if it's a bulk action or not. |
| 1601 | */ |
| 1602 | $users_opt = apply_filters( 'quick_edit_authors_query_args', $users_opt, $bulk ); |
| 1603 | |
1592 | 1604 | $authors = wp_dropdown_users( $users_opt ); |
1593 | 1605 | if ( $authors ) : |
1594 | 1606 | $authors_dropdown = '<label class="inline-edit-author">'; |