Tuesday, April 14, 2015

Show all active plugins in Wordpress - PHP Snippet

Show all active plugins in Wordpress - PHP Snippet

This php code show a list of active plugins on current site.
function wpse_54742_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";
}
}

wpse_54742_active_site_plugins();
Disqus Comments