update_blog_details

函数
update_blog_details ( $blog_id, $details = array() )
参数
  • (int) $blog_id Blog ID.
    Required:
  • (array) $details Array of details keyed by blogs table field names.
    Required:
    Default: array()
返回值
  • (bool) True if update succeeds, false otherwise.
定义位置
相关方法
update_blog_statusget_blog_detailsupdate_blog_optionrefresh_blog_detailsupdate_blog_public
引入
-
弃用
-

update_blog_details: 更新WordPress中一个网络站点的细节: 这个函数更新一个网络站点的名称、描述和其他细节。

更新一个博客的详细信息。为一个给定的博客ID更新博客表。

function update_blog_details( $blog_id, $details = array() ) {
	global $wpdb;

	if ( empty( $details ) ) {
		return false;
	}

	if ( is_object( $details ) ) {
		$details = get_object_vars( $details );
	}

	$site = wp_update_site( $blog_id, $details );

	if ( is_wp_error( $site ) ) {
		return false;
	}

	return true;
}

常见问题

FAQs
查看更多 >