WP_CLI
Runner::is_multisite()
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() 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; }