home_url

函数


home_url ( $path = '', $scheme = null )
参数
  • (string)
    $path
    Optional. Path relative to the home URL. Default empty.
    Required:
    Default: (empty)
  • (string|null)
    $scheme
    Optional. Scheme to give the home URL context. Accepts ‘http’, ‘https’, ‘relative’, ‘rest’, or null. Default null.
    Required:
    Default: null
返回值
  • (string) Home URL link with optional path appended.
定义位置
  • wp-includes/link-template.php
    , line 3319
引入
3.0.0
弃用

Retrieves the URL for the current 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.

function home_url( $path = '', $scheme = null ) {
	return get_home_url( null, $path, $scheme );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。