Query Shortcode from a multisite to appear on a different site?

I actually solved this… here’s what you need to do if anyone needs to do something similar:

SO, you can’t really query a site, but you can query pages on sites… so what I did was make a new page on the site where everything looked good, embed the shortcode, query that page and the content only on the other site. You NEED to have the site switch to that one to retrieve it though on the other multisite. You can look that up in the wp admin under “sites” to see the site ids.

Example:

 <?php switch_to_blog(2); ?>
//changes to the site you want to query
 <? $the_query = new WP_Query( 'page_id=229' );
 while ( $the_query->have_posts() ) :
 $the_query->the_post();
 the_content();
endwhile;
 wp_reset_postdata();
 ?>