Skip to content

Instantly share code, notes, and snippets.

@ooooak
Created November 4, 2014 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ooooak/3e94021254f08e680092 to your computer and use it in GitHub Desktop.
Save ooooak/3e94021254f08e680092 to your computer and use it in GitHub Desktop.
list all wordpress active plugins
$all_plugins = get_option();
$active_plugins = get_option('active_plugins');
foreach ($active_plugins as $plugin){
if (is_plugin_active_for_network($plugin)){
// plugin is network activated
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment