Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aMoniker/4388fd8dde634d595eda to your computer and use it in GitHub Desktop.
Save aMoniker/4388fd8dde634d595eda to your computer and use it in GitHub Desktop.
add_action('activated_plugin', function() {
$path = str_replace(WP_PLUGIN_DIR . '/', '', __FILE__);
if ($plugins = get_option('active_plugins')) {
if ($key = array_search($path, $plugins)) {
array_splice($plugins, $key, 1);
array_push($plugins, $path);
update_option('active_plugins', $plugins);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment