El que tengo para tomar el último post de un blog concreto:
Código PHP:
<?php
global $switched;
switch_to_blog(7); ?>
<?php query_posts("posts_per_page={$posts_per_page}&cat={$cat_id}"); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php restore_current_blog(); ?>
Se puede tomar un post en concreto? sin que sea el último!