ダッシュボードブログに、子ブログの投稿などを表示したり、それぞれのブログの情報を連携するためのテンプレート関数について、


他のブログの投稿を取得

Function Reference/get blog post « WordPress Codex.

他のブログにスイッチして表示

<?php 
switch_to_blog(3);

$cats= get_categories();

foreach ($cats as $cat) {

?>;
....

<?php
}
restore_current_blog();

?>

CODEX

http://codex.wordpress.org/Function_Reference(title)