get_blogaddress_by_name( string $blogname )
Get a full blog URL, given a blog name.
Parameters
- $blogname
-
(Required) The (subdomain or directory) name
Return
(string)
Source
File: wp-includes/ms-blogs.php
function get_blogaddress_by_name( $blogname ) {
if ( is_subdomain_install() ) {
if ( $blogname == 'main' )
$blogname = 'www';
$url = rtrim( network_home_url(), '/' );
if ( !empty( $blogname ) )
$url = preg_replace( '|^([^\.]+://)|', "\${1}" . $blogname . '.', $url );
} else {
$url = network_home_url( $blogname );
}
return esc_url( $url . '/' );
}
Changelog
Version | Description |
---|---|
WP-MU | Introduced. (3.0.0) |