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.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wp_cache_switch_to_blog( $blog_id );
$blog_id(int) (обязательный)
Site ID.

Заметки

Список изменений

С версии 3.5.0 Введена.

Код wp_cache_switch_to_blog() WP 6.5.2

function wp_cache_switch_to_blog( $blog_id ) {
	global $wp_object_cache;

	$wp_object_cache->switch_to_blog( $blog_id );
}