wpseek.com
A WordPress-centric search engine for devs and theme authors
get_blogaddress_by_id › WordPress Function
Since
Deprecatedn/a
› get_blogaddress_by_id ( $blog_id )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Gets a full site URL, given a site ID.
Related Functions: get_blogaddress_by_domain, get_blogaddress_by_name, get_metadata_by_mid, get_post_meta_by_id, get_blog_list
Source
function get_blogaddress_by_id( $blog_id ) {
$bloginfo = get_site( (int) $blog_id );
if ( empty( $bloginfo ) ) {
return '';
}
$scheme = parse_url( $bloginfo->home, PHP_URL_SCHEME );
$scheme = empty( $scheme ) ? 'http' : $scheme;
return esc_url( $scheme . '://' . $bloginfo->domain . $bloginfo->path );
}