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



is_archived › WordPress Function

Since
Deprecatedn/a
is_archived ( $id )
Parameters:
  • (int) $id Blog ID.
    Required: Yes
Returns:
  • (string) Whether the blog is archived or not.
Defined at:
Codex:
Change Log:
  • MU

Checks if a particular blog is archived.



Source

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