mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
Multisite: Do not prime site meta caches unless necessary.
Merges [44926] to the 5.1 branch. Props spacedmonkey. Fixes #46357. See #46167. Built from https://develop.svn.wordpress.org/branches/5.1@44928 git-svn-id: http://core.svn.wordpress.org/branches/5.1@44759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
13aa7e4f47
commit
4860e76289
@ -66,6 +66,7 @@ switch ( $action ) {
|
|||||||
'fields' => 'ids',
|
'fields' => 'ids',
|
||||||
'order' => 'DESC',
|
'order' => 'DESC',
|
||||||
'orderby' => 'id',
|
'orderby' => 'id',
|
||||||
|
'update_site_meta_cache' => false,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
if ( empty( $site_ids ) ) {
|
if ( empty( $site_ids ) ) {
|
||||||
|
@ -588,6 +588,7 @@ function get_oembed_response_data_for_url( $url, $args ) {
|
|||||||
$qv = array(
|
$qv = array(
|
||||||
'domain' => $url_parts['host'],
|
'domain' => $url_parts['host'],
|
||||||
'path' => '/',
|
'path' => '/',
|
||||||
|
'update_site_meta_cache' => false,
|
||||||
);
|
);
|
||||||
|
|
||||||
// In case of subdirectory configs, set the path.
|
// In case of subdirectory configs, set the path.
|
||||||
|
@ -101,6 +101,7 @@ function get_id_from_blogname( $slug ) {
|
|||||||
'fields' => 'ids',
|
'fields' => 'ids',
|
||||||
'domain' => $domain,
|
'domain' => $domain,
|
||||||
'path' => $path,
|
'path' => $path,
|
||||||
|
'update_site_meta_cache' => false,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -349,6 +349,7 @@ function get_blog_id_from_url( $domain, $path = '/' ) {
|
|||||||
'path' => $path,
|
'path' => $path,
|
||||||
'fields' => 'ids',
|
'fields' => 'ids',
|
||||||
'number' => 1,
|
'number' => 1,
|
||||||
|
'update_site_meta_cache' => false,
|
||||||
);
|
);
|
||||||
$result = get_sites( $args );
|
$result = get_sites( $args );
|
||||||
$id = array_shift( $result );
|
$id = array_shift( $result );
|
||||||
@ -1478,6 +1479,7 @@ function domain_exists( $domain, $path, $network_id = 1 ) {
|
|||||||
'path' => $path,
|
'path' => $path,
|
||||||
'fields' => 'ids',
|
'fields' => 'ids',
|
||||||
'number' => 1,
|
'number' => 1,
|
||||||
|
'update_site_meta_cache' => false,
|
||||||
);
|
);
|
||||||
$result = get_sites( $args );
|
$result = get_sites( $args );
|
||||||
$result = array_shift( $result );
|
$result = array_shift( $result );
|
||||||
@ -2438,6 +2440,7 @@ function wp_update_network_site_counts( $network_id = null ) {
|
|||||||
'deleted' => 0,
|
'deleted' => 0,
|
||||||
'archived' => 0,
|
'archived' => 0,
|
||||||
'count' => true,
|
'count' => true,
|
||||||
|
'update_site_meta_cache' => false,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -236,6 +236,7 @@ function get_site_by_path( $domain, $path, $segments = null ) {
|
|||||||
|
|
||||||
$args = array(
|
$args = array(
|
||||||
'number' => 1,
|
'number' => 1,
|
||||||
|
'update_site_meta_cache' => false,
|
||||||
);
|
);
|
||||||
|
|
||||||
if ( count( $domains ) > 1 ) {
|
if ( count( $domains ) > 1 ) {
|
||||||
|
@ -682,6 +682,7 @@ function get_blogs_of_user( $user_id, $all = false ) {
|
|||||||
$args = array(
|
$args = array(
|
||||||
'number' => '',
|
'number' => '',
|
||||||
'site__in' => $site_ids,
|
'site__in' => $site_ids,
|
||||||
|
'update_site_meta_cache' => false,
|
||||||
);
|
);
|
||||||
if ( ! $all ) {
|
if ( ! $all ) {
|
||||||
$args['archived'] = 0;
|
$args['archived'] = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user