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

February 12, 2011 


No comments yet... Be the first to leave a reply!