WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Function Reference/network home url

Description

The network_home_url template tag retrieves the home url for the current network with the appropriate protocol, 'https' if is_ssl() and 'http' otherwise. If scheme is 'http' or 'https', is_ssl() is overridden.

In case of non network setup, use home_url() instead.

Usage

<?php network_home_url$path$scheme ); ?>

Parameters

$path
(string) (optional) Path relative to the home url.
Default: None
$scheme
(string) (optional) Scheme to give the home url context. Currently 'http','https'.
Default: null

Return

(string) 
Home url link with optional path appended.

Example

$url = network_home_url();
echo $url;

Output: http://www.example.com

(Note the lack of a trailing slash)

Notes

Changelog

Source Code

network_home_url() is located in wp-includes/link-template.php.

Related

WordPress Directories:
home_url() Home URL http://www.example.com
site_url() Site directory URL http://www.example.com or http://www.example.com/wordpress
admin_url() Admin directory URL http://www.example.com/wp-admin
includes_url() Includes directory URL http://www.example.com/wp-includes
content_url() Content directory URL http://www.example.com/wp-content
plugins_url() Plugins directory URL http://www.example.com/wp-content/plugins
theme_url() Themes directory URL (#18302) http://www.example.com/wp-content/themes
wp_upload_dir() Upload directory URL (returns an array) http://www.example.com/wp-content/uploads
See also index of Function Reference and index of Template Tags.