wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_blogaddress_by_id › WordPress Function

Seit
Veraltetn/v
get_blogaddress_by_id ( $blog_id )
Parameter:
  • (int) $blog_id Site ID.
    Erforderlich: Ja
Gibt zurück:
  • (string) Full site URL if found. Empty string if not.
Definiert in:
Codex:
Changelog:
  • MU

Gets a full site URL, given a site ID.



Quellcode

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