First I was switching to each blog and then using
$recent = new WP_Query('showposts=1');
to grab the newest post from each. Then I was just printing it out right there. Then I'd switch to the next blog and so on.
My issue is that I wish to have these most recent posts sorted chronologically...and since a blog might get queried before another one with a more recent post, this can't happen the way I'm doing it.
I've changed what I was doing and built a stdObject array up and then sorted it. The only problem with this is now I cannot use "member" functions on it. I get the following error when I try to loop through as I would normally on a post using while($stuff->have_posts()) : $stuff->the_post();
ERROR:
Fatal error: Call to a member function have_posts() on a non-object in...
How can I properly get the most recent entry from each Blog on my site sorted chronologically with newest first and still use the normal loop functions?