Warning: This function has been deprecated.
create_empty_blog( string $domain, string $path, string $weblog_title, int $site_id = 1 )
Create an empty blog.
描述
参数
- $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
返回值
(string|int) The ID of the newly created blog
源代码
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 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;
}
更新日志
Version | 描述 |
---|---|
4.4.0 | This function has been deprecated. |
MU 1.0 | Introduced. |
相关函数
Uses
-
wp-includes/l10n.php:
__() -
wp-includes/functions.php:
_deprecated_function() -
wp-includes/ms-functions.php:
domain_exists() -
wp-includes/ms-functions.php:
insert_blog() -
wp-includes/ms-functions.php:
install_blog() -
wp-includes/ms-blogs.php:
switch_to_blog() -
wp-includes/ms-blogs.php:
restore_current_blog()
Show 2 more uses
Hide more uses
User Contributed Notes
你可能对这些文章感兴趣:
- wordpress函数gd_edit_image_support()用法示例
- wordpress函数gallery_shortcode()用法示例
- wordpress函数funky_javascript_callback()用法示例
- wordpress函数funky_javascript_fix()用法示例
- wordpress函数format_to_edit()用法示例
- wordpress函数format_to_post()用法示例
- wordpress函数form_option()用法示例
- wordpress函数force_ssl_login()用法示例
- wordpress函数format_code_lang()用法示例
- wordpress函数format_for_editor()用法示例
- wordpress函数force_ssl_content()用法示例
- wordpress函数flush_rewrite_rules()用法示例
- wordpress函数force_balance_tags()用法示例
- wordpress函数force_ssl_admin()用法示例
如有疑问,请前往问答中心反馈!
反馈