WordPress函数文档clean_blog_cache()
清除博客缓存 描述 Cleans the cache objects of the blog. 用法 <…
清除博客缓存
描述
Cleans the cache objects of the blog.
用法
<?php clean_blog_cache( $blog ); ?>
参数
$blog
(Object) (必填) The blog details as returned from get_blog_details()
默认值: None
历史
- 添加于 版本 3.5.0
源文件
clean_blog_cache() 函数的代码位于 wp-includes/ms-blogs.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Clean the blog cache
*
* @since 3.5.0
*
* @param stdClass $blog The blog details as returned from get_blog_details()
*/
function clean_blog_cache( $blog ) {
$blog_id = $blog->blog_id;
$domain_path_key = md5( $blog->domain . $blog->path );
wp_cache_delete( $blog_id , ‘blog-details’ );
wp_cache_delete( $blog_id . ‘short’ , ‘blog-details’ );
wp_cache_delete( $domain_path_key, ‘blog-lookup’ );
wp_cache_delete( ‘current_blog_’ . $blog->domain, ‘site-options’ );
wp_cache_delete( ‘current_blog_’ . $blog->domain . $blog->path, ‘site-options’ );
wp_cache_delete( ‘get_id_from_blogname_’ . trim( $blog->path, ‘/’ ), ‘blog-details’ );
wp_cache_delete( $domain_path_key, ‘blog-id-cache’ );
}
|
- 原文:http://codex.wordpress.org/Function_Reference/clean_blog_cache
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!