WordPress Version: 5.5
/**
* These functions are needed to load Multisite.
*
* @since 3.0.0
*
* @package WordPress
* @subpackage Multisite
*/
/**
* Whether a subdomain configuration is enabled.
*
* @since 3.0.0
*
* @return bool True if subdomain configuration is enabled, false otherwise.
*/
function is_subdomain_install()
{
if (defined('SUBDOMAIN_INSTALL')) {
return SUBDOMAIN_INSTALL;
}
return defined('VHOST') && 'yes' === VHOST;
}