插件路径相关函数:
plugins_url()
获取当前插件的目录的 uri,例如一个插件位于/wp-content/plugins/myplugin下,该目录下放有插件的主文件名为myplugin.php,在myplugin.php中执行下面的代码,结果如下
echo plugins_url();//输出:http://www.seo628.com/wp-content/pluginsecho plugins_url('',__file__);//输出:http://www.seo628.com/wp-content/plugins/mypluginecho plugins_url('js/myscript.js',__file__);//输出:http://www.seo628.com/wp-content/plugins/myplugin/js/myscript.js
plugin_dir_url()
返回当前插件的目录 uri,例如
echo plugin_dir_url(__file__ );//输出:http://www.seo628.com/wp-content/plugins/myplugin/
注意结尾有反斜杠。
plugin_dir_path()
返回当前插件目录的服务器绝对路径,例如
echo plugin_dir_path(__file__ );//输出:/home/user/public_html/wp-content/plugins/myplugin/
可以用来引用文件,例如
<?phpdefine('mypluginname_path', plugin_dir_path(__file__) );require mypluginname_path . 'includes/class-metabox.php';require mypluginname_path . 'includes/class-widget.php';?>
plugin_basename()
返回调用该函数的插件文件名称(包含插件路径)
例如在插件myplugin下的myplugin.php文件中调用该函数,结果如下
echo plugin_basename(__file__);//输出:myplugin/myplugin.php
如果在myplugin/include/test.php文件中调用(test.php通过include引用到myplugin.php中),结果如下
echo plugin_basename(__file__);//输出:myplugin/include/test.php
url 路径相关常量
wordpress 中还有一组用define定义的常量代表路径。
wp_content_dir
wp-content 目录的服务器绝对路径,例如
/home/user/public_html/wp-content
wp_content_url
wp-content 目录的 uri 地址,例如
http://www.seo628.com/wp-content
wp_plugin_dir
插件目录的服务器绝对路径,例如
/home/user/public_html/wp-content/plugins
wp_plugin_url
插件目录的 uri 地址,例如
http://www.seo628.com/wp-content/plugins
更多wordpress相关技术文章,请访问wordpress教程栏目进行学习!
以上就是wordpress插件文件目录在哪的详细内容。
