function active_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”;
}
}
active_plugins();