当前浏览:首页 / WordPress函数 / includes_url()

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

检索includes目录的URL

urlmore...


参数

$path

(string)(可选) 相对于includes URL的路径。

默认值: ''

$scheme

(string|null)(可选) 用于提供includes URL上下文的方案。接受'http'、'https'或'relative'。

默认值: null


返回

(string) 附加了可选路径的includes URL链接。



源码

查看源码 官方文档


更新日志

版本描述
2.6.0开始引入

使用示例

  • 示例1

    实例

    $url = includes_url();
    echo $url;
    
    
  • 示例2

    它的返回是什么

    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/