1 home_url()函数

1.1 函数形式与功能

home_url( string $path = '', string|null $scheme = null )

返回可访问当前站点的URL。

1.2 函数参数

  • $path:string类型,可选参数,相对于主 URL 的路径。默认值为'';
  • $scheme:string类型,可选参数,提供主 URL 上下文的方案。接受'http'、'https'、'relative'、'rest' 或 null。默认值为null。

1.3 函数返回值

返回值类型为字符串,返回带有可选路径的主页URL链接。

1.4 函数使用示例

<?php echo home_url('user_center') ?>

假如网站地址为https://www.stubbornhuang.com,那么上述则输出https://www.stubbornhuang.com/user_center/