get_blogaddress_by_domain

函数
get_blogaddress_by_domain ( $domain, $path )
参数
  • (string) $domain
    Required:
  • (string) $path
    Required:
返回值
  • (string)
定义位置
相关方法
get_blogaddress_by_idget_blogaddress_by_nameget_admin_users_for_domainget_clean_basedomainget_blog_option
引入
-
弃用
3.7.0

get_blogaddress_by_domain:给定一个域,返回网络中相应站点的URL。这主要用于内部目的。

获得一个完整的博客URL,给定一个域名和一个路径。

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 );
}

常见问题

FAQs
查看更多 >