wpseek.com
A WordPress-centric search engine for devs and theme authors



update_blog_details › WordPress Function

Since
Deprecatedn/a
update_blog_details ( $blog_id, $details = array() )
Parameters: (2)
  • (int) $blog_id Blog ID.
    Required: Yes
  • (array) $details Array of details keyed by blogs table field names.
    Required: No
    Default: array()
Returns:
  • (bool) True if update succeeds, false otherwise.
Defined at:
Codex:
Change Log:
  • MU

Updates the details for a blog and the blogs table for a given blog ID.



Source

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;
}