wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_blogaddress_by_domain › WordPress Function

Since
已弃用3.7.0
get_blogaddress_by_domain ( $domain, $path )
参数: (2)
  • (string) $domain
    Required: Yes
  • (string) $path
    Required: Yes
返回:
  • (string)
定义在:
文档:
Change Log:
  • MU

Get a full site URL, given a domain and a path.



源码

function get_blogaddress_by_domain( $domain, $path ) {
	_deprecated_function( __FUNCTION__, '3.7.0' );

	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 ( 'www.' !== $blogname )
				$url .= $blogname . '/';
		} else { // Main blog.
			$url = 'http://' . $domain . $path;
		}
	}
	return sanitize_url( $url );
}