WP Widget 实例和选项
当我激活插件时,我会向选项数据库添加一些值,例如
add_option('code','55');
如何更新该值或在小部件中使用它?我现在只看到“实例”,就像本页上的示例一样:
http://wpcoderz.com/creating-a-multi-instance-widget-with-wordpress-2-8/
我已经浏览了所有小部件 API,但没有继续。
When I activate my plugin I add some values to the options database, e.g.
add_option('code','55');
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/
I've gone through all of the widget API, but no go.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ryan,小部件的代码并不特殊,因此要获取使用 add_option() 设置的选项值,只需像往常一样使用 get_option() - 和 update_option() 来更新它。
不确定“实例”是什么意思 - 链接似乎已损坏。
Ryan, the code for a widget isn't special, so to obtain the value of options set with add_option(), just use get_option() as usual - and update_option() to update it.
Not sure what you meant by 'instances' - the link seems broken.