WordPress 多站点(启用网络)

发布于 2024-10-21 20:23:39 字数 162 浏览 5 评论 0原文

我想以编程方式在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神回复 2024-10-28 20:23:39

这适用于子目录安装:

global $current_site;
wpmu_create_blog( $current_site->domain, $current_site->path . 'mysite/', 'My Site', 1 );

这应该适用于子域安装:

global $current_site, $base;
wpmu_create_blog( 'mysite.mydomain.com', $base, 'My Site', 1 );

如果您需要同时添加博客和用户,请查看 /wp-admin/ms-edit.php 中的代码第 139 行显示“case 'addblog':'”。这里是清理域的代码,后面是从电子邮件添加新用户的代码。

this works for sub directory installs:

global $current_site;
wpmu_create_blog( $current_site->domain, $current_site->path . 'mysite/', 'My Site', 1 );

and this should work for sub domain installs:

global $current_site, $base;
wpmu_create_blog( 'mysite.mydomain.com', $base, 'My Site', 1 );

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文