get_blogaddress_by_id( int $blog_id )

Get a full blog URL, given a blog id.


Description Description


Parameters Parameters

$blog_id

(int) (Required) Blog ID.


Top ↑

Return Return

(string) Full URL of the blog if found. Empty string if not.


Top ↑

Source Source

File: wp-includes/ms-blogs.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
MU (3.0.0) Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.