get_home_url
get_home_url ( $blog_id = null, $path = '', $scheme = null )
Parameters:- (int|null) blog_id Optional. Site ID. Default null (current site).
- (string) path Optional. Path relative to the home URL. Default empty.
- (string|null) scheme Optional. Scheme to give the home URL context. Accepts 'http', 'https', 'relative', 'rest', or null. Default null.
Returns:- (string) Home URL link with optional path appended.
Defined at: - Introduced in WordPress: 3.0.0
- Deprecated in WordPress: —
Description
Retrieves the URL for a given site where the front end is accessible.Returns the 'home' option with the appropriate protocol. The protocol will be 'https'
if is_ssl() evaluates to true; otherwise, it will be the same as the 'home' option.
If `$scheme` is 'http' or 'https', is_ssl() is overridden.