Skip to content

Instantly share code, notes, and snippets.

@c10b10
Forked from alexkingorg/wp-plugin-path.php
Created November 17, 2012 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save c10b10/4095317 to your computer and use it in GitHub Desktop.
Save c10b10/4095317 to your computer and use it in GitHub Desktop.
Defining symlink compatible paths for WordPress plugins
<?php
// include this near the top of your plugin file
$my_plugin_file = __FILE__;
if (isset($plugin)) {
$my_plugin_file = $plugin;
}
else if (isset($mu_plugin)) {
$my_plugin_file = $mu_plugin;
}
else if (isset($network_plugin)) {
$my_plugin_file = $network_plugin;
}
define('MY_PLUGIN_FILE', $my_plugin_file);
define('MY_PLUGIN_PATH', WP_PLUGIN_DIR.'/'.basename(dirname($my_plugin_file)));
@c10b10
Copy link
Author

c10b10 commented Nov 17, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment