How can i get the last post from wp multisite?

I have to get the last post from my Multisite network on WordPress. For now I use this code for display the last updated post after a cycle on each blog_id: <?php $blogs = get_last_updated(‘ ‘, 0, 1); foreach ($blogs AS $blog); switch_to_blog($blog[“blog_id”]); $lastposts = get_posts(‘numberposts=1&orderby=date’); foreach($lastposts as $post) : setup_postdata($post);?> But if I want … Read more