Wordpress get plugin directory

前端 未结 14 983
广开言路
广开言路 2021-01-31 02:09

Is there any function that would return the full path of my plugin in WordPress?

Example is

path/wp-contents/plugins/myplugin

I have tr

14条回答
  •  终归单人心
    2021-01-31 02:47

    Yeah as per description of plugin_dir_path it will give you current plugin file path. But as per what you asking here you can do something like below unfortunately no direct way,

    $plugin_dir = ABSPATH . 'wp-content/plugins/plugin-folder/';
    

提交回复
热议问题