我想用php代码创建一个新的博客。
博客已创建,但已禁用或不可用。
我什至设置了选项,但仍然没有活跃的博客。
没有在互联网上找到如何通过WPMU创建博客的示例
我的代码:
function createweblog($domain, $path, $title, $user_id, $meta){
$id= wpmu_create_blog($domain, $path, $title, $user_id, '');
if($id > 1)
{
wpmu_signup_blog($domain, $path, $title, 'adminuser' , 'adminemail@gmail.com', '');
update_blog_option ($id,'blogdescription', 'description of new blog');
update_blog_option ($id, 'blog_public', 1);
return $id;
}
}
$blog_id = createweblog('subdomain.', 'domain.com', 'title of new blog' , 1 , '');
如果只是想创建博客,请使用wpmu_create_blog
。有关更多信息:https://wordpress.stackexchange.com/questions/167356/creating-multisite-in-wordpress-using-php 和 https://phpxref.ftwr.co.uk/wordpress/nav.html?wp-includes/ms-functions.php.html