Skip to content

Instantly share code, notes, and snippets.

@paulgibbs
Forked from alexkingorg/wp-plugin-path.php
Created June 16, 2012 11:00
Show Gist options
  • Save paulgibbs/2940978 to your computer and use it in GitHub Desktop.
Save paulgibbs/2940978 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)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment