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;
}/**
* Install an empty blog.
*
* Creates the new blog tables and options. If calling this function
* directly, be sure to use switch_to_blog() first, so that $wpdb
* points to the new blog.
*
* @since MU (3.0.0)
* @deprecated 5.1.0
*
* @global wpdb $wpdb WordPress database abstraction object.
* @global WP_Roles $wp_roles WordPress role management object.
*
* @param int $blog_id The value returned by wp_insert_site().
* @param string $blog_title The title of the new site.
*/