WP_Network::__isset()publicWP 4.6.0

Isset-er.

Allows current multisite naming conventions when checking for properties.

Method of the class: WP_Network{}

No Hooks.

Return

true|false. Whether the property is set.

Usage

$WP_Network = new WP_Network();
$WP_Network->__isset( $key );
$key(string) (required)
Property to check if set.

Changelog

Since 4.6.0 Introduced.

WP_Network::__isset() code WP 6.5.2

public function __isset( $key ) {
	switch ( $key ) {
		case 'id':
		case 'blog_id':
		case 'site_id':
			return true;
	}

	return false;
}