如何获取特定主题的模板数组


how to get an array of templates of an specific theme

我正在尝试更新wordpress插件。当前插件代码显示:

$themes = get_themes();
$theme = get_current_theme();
$templates = $themes[$theme]['Template Files'];

这里的问题是get_theme()get_themes()已被弃用,我曾尝试将其更改为wp_get_theme()wp_get_themes(),但它不起作用。

有人知道如何更新吗?谢谢

Owww。。。我发现它是怎么回事!!!。。。

  $theme = wp_get_theme();
  $templates = $theme->{'Template Files'};

希望它能帮助其他人。