Definition:
function is_archived( $id ) {}
Check if a particular blog is archived.
Parameters
- int $id: The blog id
Return values
returns:Whether the blog is archived or not
Source code
function is_archived( $id ) { return get_blog_status($id, 'archived'); }
2089
No comments yet... Be the first to leave a reply!