質問

Is there any way to get all activated plugin list in wordpress codex .

i used this

get_option('active_plugins');

this return the plugin file path. I want the name. Because sometimes file name is different with the actual plugin name.

役に立ちましたか?

解決

I got the answer

$apl=get_option('active_plugins');
$plugins=get_plugins();
$activated_plugins=array();
foreach ($apl as $p){           
    if(isset($plugins[$p])){
         array_push($activated_plugins, $plugins[$p]);
    }           
}
//This is the $activated_plugins information
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top