How to do I get a list of active plugins on my wordpress blog programmatically?

The activated plugins are stored in the options table of a WordPress Blog under the key active_plugins

so you can use get_option('active_plugins'); of each blog and compare the arrays.

Leave a Comment