Deprecate get_blogaddress_by_domain(), unused since [25261]. props jeremyfelt. fixes #25235.
Built from https://develop.svn.wordpress.org/trunk@25276 git-svn-id: http://core.svn.wordpress.org/trunk@25241 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
db6cf37f91
commit
14308c0d41
|
@ -55,32 +55,6 @@ function get_blogaddress_by_name( $blogname ) {
|
|||
return esc_url( $url . '/' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a full blog URL, given a domain and a path.
|
||||
*
|
||||
* @since MU
|
||||
*
|
||||
* @param string $domain
|
||||
* @param string $path
|
||||
* @return string
|
||||
*/
|
||||
function get_blogaddress_by_domain( $domain, $path ) {
|
||||
if ( is_subdomain_install() ) {
|
||||
$url = "http://" . $domain.$path;
|
||||
} else {
|
||||
if ( $domain != $_SERVER['HTTP_HOST'] ) {
|
||||
$blogname = substr( $domain, 0, strpos( $domain, '.' ) );
|
||||
$url = 'http://' . substr( $domain, strpos( $domain, '.' ) + 1 ) . $path;
|
||||
// we're not installing the main blog
|
||||
if ( $blogname != 'www.' )
|
||||
$url .= $blogname . '/';
|
||||
} else { // main blog
|
||||
$url = 'http://' . $domain . $path;
|
||||
}
|
||||
}
|
||||
return esc_url_raw( $url );
|
||||
}
|
||||
|
||||
/**
|
||||
* Given a blog's (subdomain or directory) slug, retrieve its id.
|
||||
*
|
||||
|
|
|
@ -316,3 +316,32 @@ function get_user_id_from_string( $string ) {
|
|||
return $user->ID;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a full blog URL, given a domain and a path.
|
||||
*
|
||||
* @since MU
|
||||
* @deprecated 3.7.0
|
||||
*
|
||||
* @param string $domain
|
||||
* @param string $path
|
||||
* @return string
|
||||
*/
|
||||
function get_blogaddress_by_domain( $domain, $path ) {
|
||||
_deprecated_function( __FUNCTION__, '3.7' );
|
||||
|
||||
if ( is_subdomain_install() ) {
|
||||
$url = "http://" . $domain.$path;
|
||||
} else {
|
||||
if ( $domain != $_SERVER['HTTP_HOST'] ) {
|
||||
$blogname = substr( $domain, 0, strpos( $domain, '.' ) );
|
||||
$url = 'http://' . substr( $domain, strpos( $domain, '.' ) + 1 ) . $path;
|
||||
// we're not installing the main blog
|
||||
if ( $blogname != 'www.' )
|
||||
$url .= $blogname . '/';
|
||||
} else { // main blog
|
||||
$url = 'http://' . $domain . $path;
|
||||
}
|
||||
}
|
||||
return esc_url_raw( $url );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue