wpseek.com
A WordPress-centric search engine for devs and theme authors
get_clean_basedomain › WordPress Function
Since3.0.0
Deprecatedn/a
› get_clean_basedomain ( No parameters )
Returns: |
|
Defined at: |
|
Codex: |
Get base domain of network.
Related Functions: get_admin_users_for_domain, get_calendar, get_blogaddress_by_domain, get_sample_permalink, get_the_permalink
Source
function get_clean_basedomain() { $existing_domain = network_domain_check(); if ( $existing_domain ) { return $existing_domain; } $domain = preg_replace( '|https?://|', '', get_option( 'siteurl' ) ); $slash = strpos( $domain, '/' ); if ( $slash ) { $domain = substr( $domain, 0, $slash ); } return $domain; }