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

时间:2012-09-05 00:55:04

标签: php wordpress wordpress-plugin

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

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

问题在于get_theme()get_themes()已被弃用,我尝试将其更改为wp_get_theme()wp_get_themes(),但它不起作用。

有谁知道如何更新这个? 谢谢。

1 个答案:

答案 0 :(得分:1)

噢......我发现它是怎么回事!!! ...

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

希望它可以帮助别人。