WP_Site::__construct( WP_Site|object $site )

In this article

Creates a new WP_Site object.

Description

Will populate object properties from the object provided and assign other default properties based on that information.

Parameters

$siteWP_Site|objectrequired
A site object.

Source

public function __construct( $site ) {
	foreach ( get_object_vars( $site ) as $key => $value ) {
		$this->$key = $value;
	}
}

Changelog

VersionDescription
4.5.0Introduced.

User Contributed Notes

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