这应该对你有用。
http://codex.wordpress.org/Function_Reference/plugin_basename
从示例中可以看出:
如果您的插件文件位于/home/www/wp-content/plugins/myplugin/myplugin。php,然后调用:
$x = plugin_basename(__FILE__);
$x等于“myplugin/myplugin.php”。
如果您想知道插件目录的完整url路径,可以调用:
$x = WP_PLUGIN_URL.\'/\'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__));
$x将等于“http://[插件的url路径]/[我的插件]/”