WP_Object_Cache::__construct()

In this article

Sets up object properties; PHP 5 style constructor.

Source

public function __construct() {
	$this->multisite   = is_multisite();
	$this->blog_prefix = $this->multisite ? get_current_blog_id() . ':' : '';
}

Changelog

VersionDescription
2.0.8Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.