W3cubDocs

/WordPress

WP_Network::__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-network.php

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

Changelog

Version Description
4.6.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_network/__set