wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



update_blog_details › WordPress Function

Seit
Veraltetn/v
update_blog_details ( $blog_id, $details = array() )
Parameter: (2)
  • (int) $blog_id Blog ID.
    Erforderlich: Ja
  • (array) $details Array of details keyed by blogs table field names.
    Erforderlich: Nein
    Standard: array()
Gibt zurück:
  • (bool) True if update succeeds, false otherwise.
Definiert in:
Codex:
Changelog:
  • MU

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



Quellcode

function update_blog_details( $blog_id, $details = array() ) {
	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;
}