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



update_archived › WordPress Function

Seit
Veraltetn/v
update_archived ( $id, $archived )
Parameter: (2)
  • (int) $id Blog ID.
    Erforderlich: Ja
  • (string) $archived The new status.
    Erforderlich: Ja
Gibt zurück:
  • (string) $archived
Definiert in:
Codex:
Changelog:
  • MU

Updates the 'archived' status of a particular blog.



Quellcode

function update_archived( $id, $archived ) {
	update_blog_status( $id, 'archived', $archived );
	return $archived;
}