Ticket #47685: 47685.3.diff
File 47685.3.diff, 977 bytes (added by , 4 years ago) |
---|
-
src/wp-admin/includes/class-wp-posts-list-table.php
1587 1587 $users_opt['show_option_none'] = __( '— No Change —' ); 1588 1588 } 1589 1589 1590 /** 1591 * Filters the arguments used to generate the Quick Edit authors drop-down. 1592 * 1593 * @since 5.6.0 1594 * 1595 * @see wp_dropdown_users() 1596 * 1597 * @param array $users_opt An array of arguments for the wp_dropdown_users function. 1598 * @param bool $bulk A flag to denote if it's a bulk action. 1599 */ 1600 $users_opt = apply_filters( 'quick_edit_dropdown_authors_args', $users_opt, $bulk ); 1601 1590 1602 $authors = wp_dropdown_users( $users_opt ); 1591 1603 if ( $authors ) : 1592 1604 $authors_dropdown = '<label class="inline-edit-author">';