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 99a84da59b..2d78b72dcd 100644
a
|
b
|
class WP_Posts_List_Table extends WP_List_Table { |
1653 | 1653 | <?php endif; // $bulk ?> |
1654 | 1654 | |
1655 | 1655 | <?php |
1656 | | if ( post_type_supports( $screen->post_type, 'author' ) && ! wp_is_large_user_count() ) { |
1657 | | $authors_dropdown = ''; |
| 1656 | if ( post_type_supports( $screen->post_type, 'author' ) && wp_is_large_user_count() ) { |
| 1657 | $authors_dropdown = '<select style="display:none !important;" name="post_author"></select>'; |
| 1658 | if ( ! $bulk ) { |
| 1659 | echo $authors_dropdown; |
| 1660 | } |
| 1661 | } elseif ( post_type_supports( $screen->post_type, 'author' ) && ! wp_is_large_user_count() ) { |
| 1662 | $authors_dropdown = ''; |
1658 | 1663 | |
1659 | 1664 | if ( current_user_can( $post_type_object->cap->edit_others_posts ) ) { |
1660 | 1665 | $users_opt = array( |
… |
… |
class WP_Posts_List_Table extends WP_List_Table { |
1748 | 1753 | <div class="inline-edit-col"> |
1749 | 1754 | |
1750 | 1755 | <?php |
1751 | | if ( post_type_supports( $screen->post_type, 'author' ) && ! wp_is_large_user_count() && $bulk ) { |
| 1756 | if ( post_type_supports( $screen->post_type, 'author' ) && $bulk ) { |
1752 | 1757 | echo $authors_dropdown; |
1753 | 1758 | } |
1754 | 1759 | ?> |