To get a the path to a plugin you can use plugin_dir_path(__FILE__)
– but this obviously has to be called from within the plug-in.
How can you reliably get the path to plugin B (pluginb/pluginb.php
) from within plug-in A?
Edit: Its assumed you know the slug of the plug-in you’re after (actually you can get them from get_plugins()
). But I would like it to work generally.
My best guess would be:
However, the danger here is still the assumption of the plugin’s “basename” – a well written plugin will still function even when its directory and/or main file has been renamed (for whatever reason).
Which goes back to my original comment – depending on which third-party plugin this is referring to, many authors define their own methods/constants to hold the plugin path – it would make sense to check for their existence & use these instead (if available).
So one method is to call
plugin_dir_path()
within the current plug-in and replace your own plugin directory name with that of the slug of the plug-in you’re after (pluginb/pluginb.php
):So within our plug-in
plugina/plugina.php
,Use
WP_PLUGIN_DIR
constant in your pluginA, for example:Extra info: https://codex.wordpress.org/Determining_Plugin_and_Content_Directories