How do I get activated plugin list in wordpress plugin development? [closed]

那年仲夏 提交于 2019-12-02 03:32:28

问题


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.


回答1:


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


来源:https://stackoverflow.com/questions/20488264/how-do-i-get-activated-plugin-list-in-wordpress-plugin-development

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!