参数
- $path
-
(string)(可选) 相对于includes URL的路径。
默认值: ''
- $scheme
-
(string|null)(可选) 用于提供includes URL上下文的方案。接受'http'、'https'或'relative'。
默认值: null
返回
(string) 附加了可选路径的includes URL链接。
源码
更新日志
版本 | 描述 |
---|---|
2.6.0 | 开始引入 |
使用示例
实例
$url = includes_url(); echo $url;
它的返回是什么
echo includes_url(); // https://{domain}/wp-includes echo includes_url('', 'https'); // https://{domain}/wp-includes echo includes_url('', 'http'); // http://{domain}/wp-includes echo includes_url('', 'relative'); // /wp-includes/