如何将 WP 小部件实例保存到选项
尽管我已经阅读了所有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.