update_archived( int $id, string $archived )
Update the ‘archived’ status of a particular blog.
Parameters
- $id
-
(int) (Required) Blog ID.
- $archived
-
(string) (Required) The new status.
Return
(string) $archived
Source
File: wp-includes/ms-blogs.php
function update_archived( $id, $archived ) {
update_blog_status( $id, 'archived', $archived );
return $archived;
} Changelog
| Version | Description |
|---|---|
| MU (3.0.0) | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/update_archived