Created
December 15, 2011 19:04
-
-
Save alexkingorg/1482350 to your computer and use it in GitHub Desktop.
Defining symlink compatible paths for WordPress plugins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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