我正在尝试更新wordpress插件。目前,插件代码显示:
$themes = get_themes();
$theme = get_current_theme();
$templates = $themes[$theme]['Template Files'];
问题在于get_theme()
和get_themes()
已被弃用,我尝试将其更改为wp_get_theme()
和wp_get_themes()
,但它不起作用。
有谁知道如何更新这个? 谢谢。
答案 0 :(得分:1)
$theme = wp_get_theme();
$templates = $theme->{'Template Files'};
希望它可以帮助别人。