wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_cache_switch_to_blog › WordPress Function

Seit3.5.0
Veraltetn/v
wp_cache_switch_to_blog ( $blog_id )
Parameter:
  • (int) $blog_id Site ID.
    Erforderlich: Ja
Siehe:
Definiert in:
Codex:

Switches the internal blog ID.

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


Quellcode

function wp_cache_switch_to_blog( $blog_id ) {
	global $wp_object_cache;

	$wp_object_cache->switch_to_blog( $blog_id );
}