wp_cache_switch_to_blog

函数
wp_cache_switch_to_blog ( $blog_id )
参数
  • (int) $blog_id Site ID.
    Required:
相关
  • WP_Object_Cache::switch_to_blog()
定义位置
相关方法
switch_to_blogwp_cache_closewp_cache_setswitch_to_localewp_cache_incr
引入
3.5.0
弃用
-

wp_cache_switch_to_blog: 这个函数将对象缓存切换到多站点网络中不同站点的上下文。这允许缓存的数据在站点之间共享。

切换内部博客ID。
这将改变用于在博客特定组中创建键的博客ID。

function wp_cache_switch_to_blog( $blog_id ) {
	global $wp_object_cache;

	$wp_object_cache->switch_to_blog( $blog_id );
}

常见问题

FAQs
查看更多 >