[wp-trac] [WordPress Trac] #56129: Author Dropdown menu missing in Quick Edit

WordPress Trac noreply at wordpress.org
Mon Oct 6 15:23:17 UTC 2025


#56129: Author Dropdown menu missing in Quick Edit
-------------------------------------------------+-------------------------
 Reporter:  iheartdogs                           |       Owner:  (none)
     Type:  defect (bug)                         |      Status:  reopened
 Priority:  normal                               |   Milestone:
Component:  Quick/Bulk Edit                      |     Version:  6.0
 Severity:  normal                               |  Resolution:
 Keywords:  reporter-feedback 2nd-opinion dev-   |     Focuses:  multisite,
  feedback                                       |  performance
-------------------------------------------------+-------------------------

Comment (by realloc):

 We could consider adjusting this logic to evaluate the user count per site
 instead of per network. The following code illustrates this idea:

 {{{
 add_filter( 'wp_is_large_user_count', function( $is_large_user_count ) {
         if ( ! is_multisite() ) {
                 return $is_large_user_count;
         }

         $user_count = count_users( 'time', get_current_blog_id() );

         return $user_count['total_users'] > 10000;
 } );
 }}}

 This approach preserves the intent of the performance optimization while
 ensuring that subsites with a few users retain normal Quick Edit
 functionality.

 What do you think?

-- 
Ticket URL: <https://core.trac.wordpress.org/ticket/56129#comment:10>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list