wordpress的插件目录在wp-content/plugins/下,一个插件一个目录,安装插件时可以把解压的插件上传到这个目录下或者在wordpress后台安装插件。
插件路径相关函数:
plugins_url()
获取当前插件的目录的 URI,例如一个插件位于/wp-content/plugins/myplugin下,该目录下放有插件的主文件名为myplugin.php,在myplugin.php中执行下面的代码,结果如下
echo plugins_url(); //输出:http://www.seo628.com/wp-content/plugins echo plugins_url('',__FILE__); //输出:http://www.seo628.com/wp-content/plugins/myplugin echo 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/
可以用来引用文件,例如
<?php define('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
2、本站所有文章、图片、资源等如果未标明原创,均为收集自互联网公开资源;分享的图片、资源、视频等,出镜模特均为成年女性正常写真内容,版权归原作者所有,仅作为个人学习、研究以及欣赏!如有涉及下载请24小时内删除;
3、如果您发现本站上有侵犯您的权益的作品,请与我们取得联系,我们会及时修改、删除并致以最深的歉意。邮箱: i-hu#(#换@)foxmail.com