如何在WordPress中获取当前的插件目录?
我需要获取当前的插件目录,例如:
[wordpress_install_dir]/wp-content/plugins/plugin_name
(如果从插件调用,它将返回 ,安装的根目录。getcwd()
[wordpress_install_dir]
我需要获取当前的插件目录,例如:
[wordpress_install_dir]/wp-content/plugins/plugin_name
(如果从插件调用,它将返回 ,安装的根目录。getcwd()
[wordpress_install_dir]
看看OP自己的答案,我认为OP想要;
$plugin_dir_path = dirname(__FILE__);