plugin_dir_path

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

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

获取所传递的插件__FILE__的文件系统目录路径(带尾部斜线)。

function plugin_dir_path( $file ) {
	return trailingslashit( dirname( $file ) );
}

常见问题

FAQs
查看更多 >