is_subdomain_install()

Whether or not if subdomain install.


Description Description

See also See also


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: bp-core/bp-core-wpabstraction.php

		function is_subdomain_install() {
			if ( ( defined( 'VHOST' ) && 'yes' == VHOST ) || ( defined( 'SUBDOMAIN_INSTALL' ) && SUBDOMAIN_INSTALL ) )
				return true;

			return false;
		}

Top ↑

Changelog Changelog

Changelog
Version Description
1.2.5.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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