WP_CLI

Runner::is_multisite()privateWP-CLI 1.0

Whether or not this WordPress installation is multisite.

For use after wp-config.php has loaded, but before the rest of WordPress is loaded.

Метод класса: Runner{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// private - только в коде основоного (родительского) класса
$result = $this->is_multisite();

Код Runner::is_multisite() WP-CLI 2.8.0-alpha

private function is_multisite() {
	if ( defined( 'MULTISITE' ) ) {
		return MULTISITE;
	}

	if ( defined( 'SUBDOMAIN_INSTALL' ) || defined( 'VHOST' ) || defined( 'SUNRISE' ) ) {
		return true;
	}

	return false;
}