refresh_blog_details( int $blog_id )
Clear the blog details cache.
Description Description
Parameters Parameters
- $blog_id
-
(int) (Optional) Blog ID. Defaults to current blog.
Source Source
File: wp-includes/ms-blogs.php
function refresh_blog_details( $blog_id = 0 ) { $blog_id = (int) $blog_id; if ( ! $blog_id ) { $blog_id = get_current_blog_id(); } clean_blog_cache( $blog_id ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
MU (3.0.0) | Introduced. |