wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



is_multisite › WordPress Function

Seit3.0.0
Veraltetn/v
is_multisite ( Keine Parameter )
Gibt zurück:
  • (bool) True if Multisite is enabled, false otherwise.
Definiert in:
Codex:

Determines whether Multisite is enabled.



Quellcode

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

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

	return false;
}