On this page
create_empty_blog( string $domain, string $path, string $weblog_title, int $site_id = 1 ): string|int
This function has been deprecated.
Create an empty blog.
Parameters
$domainstring Required-
The new blog's domain.
$pathstring Required-
The new blog's path.
$weblog_titlestring Required-
The new blog's title.
$site_idint Optional-
Defaults to 1.
Default:
1
Return
string|int The ID of the newly created blog
Source
File: wp-includes/ms-deprecated.php. View all references
function create_empty_blog( $domain, $path, $weblog_title, $site_id = 1 ) {
_deprecated_function( __FUNCTION__, '4.4.0' );
if ( empty($path) )
$path = '/';
// Check if the domain has been used already. We should return an error message.
if ( domain_exists($domain, $path, $site_id) )
return __( '<strong>Error:</strong> Site URL you’ve entered is already taken.' );
/*
* Need to back up wpdb table names, and create a new wp_blogs entry for new blog.
* Need to get blog_id from wp_blogs, and create new table names.
* Must restore table names at the end of function.
*/
if ( ! $blog_id = insert_blog($domain, $path, $site_id) )
return __( '<strong>Error:</strong> There was a problem creating site entry.' );
switch_to_blog($blog_id);
install_blog($blog_id);
restore_current_blog();
return $blog_id;
}
Related
Uses
| Uses | Description |
|---|---|
| domain_exists() wp-includes/ms-functions.php | Checks whether a site name is already taken. |
| insert_blog() wp-includes/ms-deprecated.php | Store basic site info in the blogs table. |
| install_blog() wp-includes/ms-deprecated.php | Install an empty blog. |
| switch_to_blog() wp-includes/ms-blogs.php | Switch the current blog. |
| restore_current_blog() wp-includes/ms-blogs.php | Restore the current blog, after calling switch_to_blog() . |
| __() wp-includes/l10n.php | Retrieves the translation of $text. |
| _deprecated_function() wp-includes/functions.php | Marks a function as deprecated and inform when it has been used. |
Changelog
| Version | Description |
|---|---|
| 4.4.0 | This function has been deprecated. |
| MU (3.0.0) | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/create_empty_blog