如何查看自己的作品是WP还是WPMU?
我使用全局变量 $table_prefix
来区分我是在 Word Press 还是 WPMU 上工作。我的插件需要这个全局变量。但是有没有更好的方法来检查您的插件是否在 Word Press 或 WPMU 上运行?
I use global variable $table_prefix
to differ whether I work on Word Press or WPMU. I need this global variable for my plugin. But is there any better way to check whether your pluggin is working on Word Press or WPMU?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 WPMU 中,应设置名为
wpmu_version
的全局变量。In WPMU a global variable named
wpmu_version
should be set.对于我的检查,我使用一个我发现的函数,
像这样使用它
for my checks I use a function I found
use it like this
您可以定义一个常量:
例如
define('ENVIRONMENT', 'WP');
define('ENVIRONMENT', 'WPMU');
You could define a constant:
e.g.
define('ENVIRONMENT', 'WP');
define('ENVIRONMENT', 'WPMU');