[insert_php]
$args = array(
‘post_type’ => ‘post’,
‘sites’ => array(
‘sites__in’ => array( 1, 2, 3, 5 )
)
);

$query = new WP_Query_Multisite( $args );

while( $query->have_posts() ) : $query->the_post();
echo $blog_id . get_the_title() . «
«;
endwhile;

wp_reset_postdata();

[/insert_php]

[multisite_search_result]