install_blog_defaults()

install_blog_defaults( int $blog_id, int $user_id ) 设置博…

install_blog_defaults( int $blog_id, int $user_id )

设置博客默认值。
Set blog defaults.

目录锚点:#说明#返回#源码


说明(Description)

此函数在wp_blogs表中创建一行。


返回(Return)

无返回值


源码(Source)

/**
 * Set blog defaults.
 *
 * This function creates a row in the wp_blogs table.
 *
 * @since MU
 * @deprecated MU
 * @deprecated Use wp_install_defaults()
 *
 * @global wpdb $wpdb
 *
 * @param int $blog_id Ignored in this function.
 * @param int $user_id
 */
function install_blog_defaults($blog_id, $user_id) {
	global $wpdb;

	require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );

	$suppress = $wpdb->suppress_errors();

	wp_install_defaults($user_id);

	$wpdb->suppress_errors( $suppress );
}
更新版本 源码位置 使用 被使用
MU (3.0.0) wp-includes/ms-deprecated.php:675 0 3
类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册