Scans a multisite or multi-network installation to identify all plugins that are active or not.
Plugin Activation Status makes it easier for owners of multisite and multi-network WordPress installations to perform plugin audits on their installations. The plugin generates a list of plugins that are not currently active on any sites or networks. It generates a separate list of plugins that are active somewhere within the installation, and provides details about where and how those plugins are activated.
This plugin first retrieves a full list of all of the plugins that are network-activated throughout your installation. Then, it loops through all of the sites in your installation, retrieving a list of all of the active plugins on each site. Next, it runs a diff between the full list of installed plugins and the list of all active plugins.
Once it retrieves all of that information, it outputs two separate lists.
The first list is the list of Inactive Plugins; all plugins that are installed, but not activated anywhere within WordPress will be listed there. The second list shows all of the Active Plugins; all plugins that are installed and activated somewhere within WordPress are shown there.
Within the Active Plugins list, each plugin also has a list of all of the places the plugin is active (at the top, a list of all of the places it’s network-active; at the bottom, all of the places it’s normally-activated).
When the plugin generates the lists of plugins, it stores those lists as site options in the database, so the lists can be retrieved for reference without using any additional server resources. If you would like to remove those cached lists and generate new lists, you simply have to click the Continue button on the admin page.
plugin-activation-status
folder to the /wp-content/plugins/
directoryplugin-activation-status
folder to the /wp-content/mu-plugins/
directory (if that directory does not exist, you can create it)plugin-activation-status.php
out of /wp-content/mu-plugins/plugin-activation-status/
and directly into /wp-content/mu-plugins/
plugin-activation-status
folder to the /wp-content/plugins/
directoryplugin-activation-status
folder to the /wp-content/mu-plugins/
directory (if that directory does not exist, you can create it)plugin-activation-status.php
out of /wp-content/mu-plugins/plugin-activation-status/
and directly into /wp-content/mu-plugins/
That menu item will only appear in the Network Admin area for the primary (root/main) network. If you are running a multi-network installation and you activated the plugin on a network other than the first, you won’t see that menu item.
No. If you need to see the activation status of plugins in a standard WP install, you can simply go to Plugins -> Installed Plugins in your admin area. This plugin is specifically developed for multisite and multi-network installs of WordPress, where it’s much more difficult to get a clear, accurate picture of which plugins are active and where they’re active.
When a plugin is installed and activated, WordPress uses that file path as the indicator that the plugin has been activated, and stores that information in the database. If a plugin file is removed or renamed after it’s been activated on a site, WordPress doesn’t know that it has to remove that old path from the list of active plugins until you visit the Plugins page on each site where it was active.
To make a long story short (too late!), those are plugins that are still considered “active” by WordPress, but no longer exist in your /wp-content/plugins/
directory.
is_main_network()
function)