您可以使用以下代码将模板和样式表分配给子网站/博客:
// create the blog
$blog_ID = wpmu_create_blog( $domain, $path, $title, 1 );
// assign template and stylesheet to the blog
update_blog_option( $blog_ID, \'template\', \'your_template_name\' );
update_blog_option( $blog_ID, \'stylesheet\', \'your_stylesheet_name\' );
这将为刚刚创建的博客分配模板和样式表。请访问以下链接查看wpmu\\u create\\u博客功能的文档。
wpmu_create_blog
非常感谢。