Wordpress get plugin directory

前端 未结 14 849
广开言路
广开言路 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:31

    Code For Plugin Root Path

    $dir = plugin_dir_path( __FILE__ );
    
    // Example: /home/user/var/www/wordpress/wp-content/plugins/my-plugin/
    

    Code for plugin path

    echo  WP_PLUGIN_DIR.'/plugin-name';
    

提交回复
热议问题