is_archived( int $id )

Check if a particular blog is archived.


Description Description


Parameters Parameters

$id

(int) (Required) Blog ID.


Top ↑

Return Return

(string) Whether the blog is archived or not.


Top ↑

Source Source

File: wp-includes/ms-blogs.php

function is_archived( $id ) {
	return get_blog_status( $id, 'archived' );
}

Top ↑

Changelog Changelog

Changelog
Version Description
MU (3.0.0) Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.