plugin_dir_url

函数
plugin_dir_url ( $file )
参数
  • (string) $file The filename of the plugin (__FILE__).
    Required:
返回值
  • (string) the URL path of the directory that contains the plugin.
定义位置
相关方法
plugins_urlplugin_dir_pathwp_login_urlplugins_apiget_plugin_files
引入
2.8.0
弃用
-

plugin_dir_url: 这个函数用于获取插件目录的URL。它需要一个参数:$file,这是插件文件的名称: 该函数返回该插件目录的URL。

获取传入的插件__FILE__的URL目录路径(带尾部斜线)。

function plugin_dir_url( $file ) {
	return trailingslashit( plugins_url( '', $file ) );
}

常见问题

FAQs
查看更多 >