如何将 WP 小部件实例保存到选项

发布于 2024-11-10 07:39:48 字数 356 浏览 0 评论 0原文

尽管我已经阅读了所有 API 并搜索了几个小时,但我对此有点困惑。

当我激活插件时,我会向选项数据库添加一些值,例如

add_option('code','24');

如何更新该值或在小部件中使用它?我现在只看到“实例”,就像本页上的示例一样:

http://wpcoderz.com/creating-a-multi-instance-widget-with-wordpress-2-8/

I'm a little confused about this, even though I have read all of the API and searched for hours.

When I activate my plugin I add some values to the options database, e.g.

add_option('code','24');

How do I update that value or use it in the widget? I only see "instances" now, like the example on this page:

http://wpcoderz.com/creating-a-multi-instance-widget-with-wordpress-2-8/

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

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

发布评论

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

评论(1

白首有我共你 2024-11-17 07:39:48

您可以使用 get_option 获取选项并使用 update_option。但是您应该使用实例而不是小部件设置选项(如标题),因为这就是实例的目的。您不必关心存储实例值 - WP 会为您做这件事。如果您不太了解实例,请查看 codex.wordpress.org/Widgets_API。

You can get an option using get_option and update it using update_option. But you should use instances instead of options for widget settings (like title) because that's the purpose of instances. You don't have to care about storing instance value - WP does it for you. If you don't understand instances well, look at codex.wordpress.org/Widgets_API.

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