WP_Network::__isset( string $key )

Isset-er.


Description Description

Allows current multisite naming conventions when checking for properties.


Parameters Parameters

$key

(string) (Required) Property to check if set.


Top ↑

Return Return

(bool) Whether the property is set.


Top ↑

Source Source

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

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

		return false;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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