Skip to content

Instantly share code, notes, and snippets.

@alexkingorg
Created December 15, 2011 19:04
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save alexkingorg/1482350 to your computer and use it in GitHub Desktop.
Defining symlink compatible paths for WordPress plugins
<?php
$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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment