WordPress 主题 API

发布于 2024-08-03 01:16:35 字数 397 浏览 3 评论 0原文

在研究 /wp-admin/theme-install.php?tab=search 的源代码时,我发现了您在 WordPress Admin 中获得的主题目录 ->添加新主题是通过对 http://api.wordpress.org/themes 的 API 调用生成的/info/1.0/

不幸的是,还没有这方面的文档。

我尝试分开 /wp-admin/theme-install.php?tab=search 在 WP Admin 之外重新生成主题列表,但未能这样做。

有人这样做吗?

有人能弄清楚如何在管理区域之外获取该主题列表/目录吗?

When studying the source of /wp-admin/theme-install.php?tab=search, I discovered the theme directory you get inside WordPress Admin -> Add New Themes is generated from an API call to http://api.wordpress.org/themes/info/1.0/

Unfortunately, there is no documentation for this yet.

I tried picking apart /wp-admin/theme-install.php?tab=search to regenerate the theme listing outside of WP Admin, but have not been able to do so.

Has anyone does this?

Can someone figure out how to get that theme listing/directory outside of the Admin area?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往昔成烟 2024-08-10 01:16:35

试试这个:

/** Sets up the WordPress Environment. */
require( dirname(__FILE__) . '/wp-load.php' );

/** WordPress Theme Administration API */
require_once(ABSPATH . 'wp-admin/includes/theme.php');

$themes = get_themes();
var_dump($themes);

?>

Try this :

/** Sets up the WordPress Environment. */
require( dirname(__FILE__) . '/wp-load.php' );

/** WordPress Theme Administration API */
require_once(ABSPATH . 'wp-admin/includes/theme.php');

$themes = get_themes();
var_dump($themes);

?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文