WP_Network::_set_cookie_domain()

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Sets the cookie domain based on the network domain if one has not been populated.

Source

private function _set_cookie_domain() {
	if ( ! empty( $this->cookie_domain ) ) {
		return;
	}

	$this->cookie_domain = $this->domain;
	if ( str_starts_with( $this->cookie_domain, 'www.' ) ) {
		$this->cookie_domain = substr( $this->cookie_domain, 4 );
	}
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

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