I need to get the current plugin directory like [wordpress_install_dir]/wp-content/plugins/plugin_name
(if getcwd() called from the plugin, it returns [wordpress_install_dir], the root of installation)
thanks for help
|
|
|
Looking at your own answer @Bog, I think you want;
|
|||||||||||||||
|
|
Why not use the WordPress core function that's designed specifically for that purpose?
See Codex documentation here. You also have
if what you're looking for is a URI as opposed to a server path. See Codex documentation here. IMO it's always best to use the highest-level method that's available in core, and this is it. It makes your code more future proof. |
|||||||||||
|
|
To get the plugin directory you can use the Wordpress function
You can combine this with the URL or the server path of the plugin directory. Therefor you can use the constants Read more about it in the Wordpress codex. |
|||||||||
|
|
This will actually get the result you want:
http://codex.wordpress.org/Function_Reference/plugin_dir_url |
|||
|
|
$full_path = WP_PLUGIN_URL.'/'.str_replace(basename( FILE),"",plugin_basename(FILE)); WP_PLUGIN_URL - the url of the plugins directory WP_PLUGIN_DIR - the server path to the plugins directory This link helps you http://codex.wordpress.org/Determining_Plugin_and_Content_Directories |
|||
|
|
|
Try this:
echo PluginUrl(); will return the current plugin url. |
|||
|
|