WP_Object_Cache::__construct()
Sets up object properties; PHP 5 style constructor.
Source
File: wp-includes/class-wp-object-cache.php
.
View all references
public function __construct() {
$this->multisite = is_multisite();
$this->blog_prefix = $this->multisite ? get_current_blog_id() . ':' : '';
}
Changelog
Version | Description |
---|---|
2.0.8 | Introduced. |