plugin_dir_url()

plugin_dir_url( string $file ) 获取传入的插件文件的URL目录路径(带斜杠)。G…

plugin_dir_url( string $file )

获取传入的插件文件的URL目录路径(带斜杠)。
Get the URL directory path (with trailing slash) for the plugin __FILE__ passed in.

目录锚点:#参数#返回#源码#笔记


参数(Parameters)

参数 类型 必填 说明
$file (string) 必需 插件的文件名(文件名)。

返回(Return)

(string)包含插件的目录的URL路径。


源码(Source)

/**
 * Get the URL directory path (with trailing slash) for the plugin __FILE__ passed in.
 *
 * @since 2.8.0
 *
 * @param string $file The filename of the plugin (__FILE__).
 * @return string the URL path of the directory that contains the plugin.
 */
function plugin_dir_url( $file ) {
	return trailingslashit( plugins_url( '', $file ) );
}
更新版本 源码位置 使用 被使用
2.8.0 wp-includes/plugin.php:762 0 2

笔记(Notes)

假设当前URL为:http://example.com/wp-content/plugins/my-plugin/includes/
基本示例
插件目录url(u文件)=http://your-url.com/wp-content/plugins/your-plugin/

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册