update_site_cache( array $sites, bool $update_meta_cache = true )

In this article

Updates sites in cache.

Parameters

$sitesarrayrequired
Array of site objects.
$update_meta_cachebooloptional
Whether to update site meta cache.

Default:true

Source

function update_site_cache( $sites, $update_meta_cache = true ) {
	if ( ! $sites ) {
		return;
	}
	$site_ids          = array();
	$site_data         = array();
	$blog_details_data = array();
	foreach ( $sites as $site ) {
		$site_ids[]                                    = $site->blog_id;
		$site_data[ $site->blog_id ]                   = $site;
		$blog_details_data[ $site->blog_id . 'short' ] = $site;

	}
	wp_cache_add_multiple( $site_data, 'sites' );
	wp_cache_add_multiple( $blog_details_data, 'blog-details' );

	if ( $update_meta_cache ) {
		update_sitemeta_cache( $site_ids );
	}
}

Changelog

VersionDescription
5.1.0Introduced the $update_meta_cache parameter.
4.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.