Warning: This function has been deprecated.

create_empty_blog() WordPress Function

This function will create an empty blog with no posts or pages. This is useful for when you want to start fresh with a new blog.

create_empty_blog( string $domain, string $path, string $weblog_title, int $site_id = 1 ) #

Create an empty blog.


Parameters

$domain

(string)(Required)The new blog's domain.

$path

(string)(Required)The new blog's path.

$weblog_title

(string)(Required)The new blog's title.

$site_id

(int)(Optional) Defaults to 1.

Default value: 1


Top ↑

Return

(string|int) The ID of the newly created blog


Top ↑

Source

File: wp-includes/ms-deprecated.php

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&#8217;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;
}


Top ↑

Changelog

Changelog
VersionDescription
4.4.0This function has been deprecated.
MU (3.0.0)Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.