Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 WPMU,但管理员应该设置一些选项,并且应该对网站的每个用户产生影响。wordpress 有存储这些全局选项的地方吗?谁能指出我的示例代码?
谢谢!
从 Wordpress 3.0 开始,您可以使用 add_site_option、update_site_option 和 get_site_option 从具有特定 ID 的博客中获取选项。因此,只需将所有管理选项存储在一个站点上,将该站点的 ID 保存为常量,然后从那里获取所有选项。
http://codex.wordpress.org/WPMU_Functions/get_site_option
我的第一直觉是创建自己的表来存储这些选项。然后,您可以完全控制何时、何地以及由谁访问数据……在您的所有 MU 博客中全局访问。
就示例代码而言,我建议从codex开始或尝试浏览本教程。