Deprecate `create_empty_blog()`. This function has never been used in core.
Fixes #34120 Built from https://develop.svn.wordpress.org/trunk@34753 git-svn-id: http://core.svn.wordpress.org/trunk@34718 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
25b1dd594a
commit
d0d9e4c8d8
|
@ -356,3 +356,39 @@ function get_blogaddress_by_domain( $domain, $path ) {
|
|||
}
|
||||
return esc_url_raw( $url );
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an empty blog.
|
||||
*
|
||||
* @since MU 1.0
|
||||
* @deprecated 4.4.0
|
||||
*
|
||||
* @param string $domain The new blog's domain.
|
||||
* @param string $path The new blog's path.
|
||||
* @param string $weblog_title The new blog's title.
|
||||
* @param int $site_id Optional. Defaults to 1.
|
||||
* @return string|int The ID of the newly created blog
|
||||
*/
|
||||
function create_empty_blog( $domain, $path, $weblog_title, $site_id = 1 ) {
|
||||
_deprecated_function( __FUNCTION__, '4.4' );
|
||||
|
||||
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 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>: problem creating site entry.' );
|
||||
|
||||
switch_to_blog($blog_id);
|
||||
install_blog($blog_id);
|
||||
restore_current_blog();
|
||||
|
||||
return $blog_id;
|
||||
}
|
||||
|
|
|
@ -296,39 +296,6 @@ function remove_user_from_blog($user_id, $blog_id = '', $reassign = '') {
|
|||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an empty blog.
|
||||
*
|
||||
* @since MU 1.0
|
||||
*
|
||||
* @param string $domain The new blog's domain.
|
||||
* @param string $path The new blog's path.
|
||||
* @param string $weblog_title The new blog's title.
|
||||
* @param int $site_id Optional. Defaults to 1.
|
||||
* @return string|int The ID of the newly created blog
|
||||
*/
|
||||
function create_empty_blog( $domain, $path, $weblog_title, $site_id = 1 ) {
|
||||
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 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>: problem creating site entry.' );
|
||||
|
||||
switch_to_blog($blog_id);
|
||||
install_blog($blog_id);
|
||||
restore_current_blog();
|
||||
|
||||
return $blog_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the permalink for a post on another blog.
|
||||
*
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34752';
|
||||
$wp_version = '4.4-alpha-34753';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue