insert_blog

函数
insert_blog ( $domain, $path, $site_id )
参数
  • (string) $domain The domain of the new site.
    Required:
  • (string) $path The path of the new site.
    Required:
  • (int) $site_id Unless you're running a multi-network install, be sure to set this value to 1.
    Required:
返回值
  • (int|false) The ID of the new row
相关
  • wp_insert_site()
定义位置
相关方法
install_blogadd_user_to_blogadd_new_user_to_blogwp_insert_postwp_insert_link
引入
-
弃用
5.1.0

insert_blog: 这个函数用来在一个WordPress多站点安装中创建一个新的站点。它接受一个站点详细信息的数组,并返回新创建站点的ID。

在blogs表中存储网站的基本信息。

这个函数在wp_blogs表中创建一条记录,并返回新博客的ID: 这是创建一个新博客的第一步。

function insert_blog($domain, $path, $site_id) {
	_deprecated_function( __FUNCTION__, '5.1.0', 'wp_insert_site()' );

	$data = array(
		'domain'  => $domain,
		'path'    => $path,
		'site_id' => $site_id,
	);

	$site_id = wp_insert_site( $data );
	if ( is_wp_error( $site_id ) ) {
		return false;
	}

	clean_blog_cache( $site_id );

	return $site_id;
}

常见问题

FAQs
查看更多 >