get_blogaddress_by_id

函数
get_blogaddress_by_id ( $blog_id )
参数
  • (int) $blog_id Blog ID.
    Required:
返回值
  • (string) Full URL of the blog if found. Empty string if not.
定义位置
相关方法
get_blogaddress_by_domainget_blogaddress_by_nameget_metadata_by_midget_post_meta_by_idget_blog_list
引入
-
弃用
-

get_blogaddress_by_id: 这个函数根据一个博客的ID来返回其URL。它把博客的ID作为参数,并返回与该ID相关的博客的URL。

获得一个完整的博客URL,给定一个博客ID。

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

常见问题

FAQs
查看更多 >