get_clean_basedomain

Definition:
function get_clean_basedomain() {}

Get base domain of network.

Return values

returns:Base domain.

Source code

function get_clean_basedomain() {

	if ( $existing_domain = network_domain_check() )

		return $existing_domain;

	$domain = preg_replace( '|https?://|', '', get_option( 'siteurl' ) );

	if ( $slash = strpos( $domain, '/' ) )

		$domain = substr( $domain, 0, $slash );

	return $domain;

}

1270

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: