wp_cache_switch_to_blog()WP 3.5.0

Switches the internal blog ID.

This changes the blog id used to create keys in blog specific groups.

No Hooks.

Return

null. Nothing (null).

Usage

wp_cache_switch_to_blog( $blog_id );
$blog_id(int) (required)
Site ID.

Notes

Changelog

Since 3.5.0 Introduced.

wp_cache_switch_to_blog() code WP 6.5.2

function wp_cache_switch_to_blog( $blog_id ) {
	global $wp_object_cache;

	$wp_object_cache->switch_to_blog( $blog_id );
}