WordPress 多站点(启用网络)
我想以编程方式在 Wordpress Muti 站点(启用网络的 wordpres)中创建博客/站点。有没有 API 可以做到这一点?如果不是的话可以直接将数据插入数据库吗?
我想根据 php 页面中的一个自定义注册表单创建一个 WordPress 网站。任何文档的帮助/链接将不胜感激。谢谢。
I want to programatically create a Blog/Site in Wordpress Muti site (Networking enabled wordpres). Is there any API to do that? If Not, Can I directly insert the data into the data base?
I want to create a wordpress site based on one of my custom registration forms from a php page. Any Help/Links to the documentation will be appreciated. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这适用于子目录安装:
这应该适用于子域安装:
如果您需要同时添加博客和用户,请查看 /wp-admin/ms-edit.php 中的代码第 139 行显示“case 'addblog':'”。这里是清理域的代码,后面是从电子邮件添加新用户的代码。
this works for sub directory installs:
and this should work for sub domain installs:
if you need to add a blog with and a user at the same time, check out the code in /wp-admin/ms-edit.php around where it says 'case 'addblog':' on line 139. THere is code to sanitze the domain, following there is code to add a new user from an email.