Editor: Check `get_user_count()` instead of `get_users()` for the locked post notice.
This aims to avoid slowing down the post editing by using a cached value instead of calling `get_users()`, which can be slow when plugins add various filters to all `get_users()` calls, especially with meta value comparisons on large `user_meta` tables. Follow-up to [24304], [24543], [41829], [53011], [53018]. Props berislav.grgicak, bor0, costdev. See #55958. Built from https://develop.svn.wordpress.org/trunk@59522 git-svn-id: http://core.svn.wordpress.org/trunk@58908 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2b5ee6e41c
commit
072c0afc53
|
@ -25,14 +25,7 @@ $current_screen->is_block_editor( false );
|
||||||
if ( is_multisite() ) {
|
if ( is_multisite() ) {
|
||||||
add_action( 'admin_footer', '_admin_notice_post_locked' );
|
add_action( 'admin_footer', '_admin_notice_post_locked' );
|
||||||
} else {
|
} else {
|
||||||
$check_users = get_users(
|
if ( get_user_count() > 1 ) {
|
||||||
array(
|
|
||||||
'fields' => 'ID',
|
|
||||||
'number' => 2,
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
if ( count( $check_users ) > 1 ) {
|
|
||||||
add_action( 'admin_footer', '_admin_notice_post_locked' );
|
add_action( 'admin_footer', '_admin_notice_post_locked' );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.8-alpha-59521';
|
$wp_version = '6.8-alpha-59522';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue