WP_Network::__get( string $key )

Getter.


Description Description

Allows current multisite naming conventions when getting properties.


Parameters Parameters

$key

(string) (Required) Property to get.


Top ↑

Return Return

(mixed) Value of the property. Null if not available.


Top ↑

Source Source

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

	public function __get( $key ) {
		switch ( $key ) {
			case 'id':
				return (int) $this->id;
			case 'blog_id':
				return (string) $this->get_main_site_id();
			case 'site_id':
				return $this->get_main_site_id();
		}

		return null;
	}

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.