blogのIDが3のブログの投稿記事全てを最新5件表示する場合の例です。
<?php switch_to_blog(3) ?>
<ul>
<?php
global $post;
$myposts = get_posts('numberposts=5');
foreach($myposts as $post) :
setup_postdata($post);
?>
<li><?php the_date() ?><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
<?php restore_current_blog(); ?>