WP_Site::__set( string $key, mixed $value )

Setter.


Description

Allows current multisite naming conventions while setting properties.


Parameters

$key

(string) (Required) Property to set.

$value

(mixed) (Required) Value to assign to the property.


Source

File: wp-includes/class-wp-site.php

	public function __set( $key, $value ) {
		switch ( $key ) {
			case 'id':
				$this->blog_id = (string) $value;
				break;
			case 'network_id':
				$this->site_id = (string) $value;
				break;
			default:
				$this->$key = $value;
		}
	}

Changelog

Changelog
Version Description
WP-4.6.0 Introduced.