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



refresh_blog_details › WordPress Function

Seit
Veraltetn/v
refresh_blog_details ( $blog_id = 0 )
Parameter:
  • (int) $blog_id Optional. Blog ID. Defaults to current blog.
    Erforderlich: Nein
    Standard:
Definiert in:
Codex:
Changelog:
  • MU

Clears the blog details cache.



Quellcode

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 );
}