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

February 12, 2011 


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