如果您想在页面上显示所有插件的列表,可以按照Rick的建议在页面上使用WordPress快捷码。
下面是一些演示如何执行此操作的示例代码:
function list_my_plugins(){
$plugins = get_plugins();
$output = \'<ul>\';
foreach ( $plugins as $plugin ){
$output .= \'<li>\' . $plugin[\'Name\'] . \'</li>\';
}
$output .= \'</ul>\';
return $output;
}
add_shortcode(\'list-my-plugins\', \'list_my_plugins\');
只需将上述代码添加到函数中即可。php文件或将其创建为插件,那么您只需要使用短代码
[list-my-plugins]
在您的页面上。
您可以在“示例输出”中的codex页面上的返回数组中看到插件信息的完整列表:https://codex.wordpress.org/Function_Reference/get_plugins