Skip to content

Instantly share code, notes, and snippets.

@goliver79
Created August 9, 2015 09:32
Show Gist options
  • Save goliver79/31992c16919842ab336c to your computer and use it in GitHub Desktop.
Save goliver79/31992c16919842ab336c to your computer and use it in GitHub Desktop.
[WORDPRESS] Show all active plugins
<?php
function wpr_active_site_plugins() {
$the_plugs = get_option('active_plugins');
foreach($the_plugs as $key => $value) {
$string = explode('/',$value); // Folder name will be displayed
echo $string[0] ."\n";
}
}
wpr_active_site_plugins();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment