How to see which sites use my installed plugins (wordpress multisite)
How can I (easily) determine which of my wordpress sites are using a given plugin, on a Wordpress Multisite install?
Let's say I have 1,000 wordpress sites on a Wordpress Multisite install. I have 100 plugins.
For each plugin, I want to list all of the sites that are using that plugin.
In the GUI, I can only see how this can be done in about 1 million clicks. Is there a query I can run against the DB (and maybe cleanup with bash/awk/etc) that will automatically
- Get all of the plugins installed
- For each plugin, list all of the sites that use that plugin (by
site-id
is fine)
What's a fast way to determine all of the sites that use each of my installed plugins on Wordpress Multisite?