kaioe
6/13/2016 - 4:57 AM

wordpress:multisites_posts_from_parent

Multisites posts from parent

<?php
  switch_to_blog(1);
$blog = new WP_Query(array(
  'post_type' => 'post', 
  'posts_per_page' => 4, // all posts
  ) 
); 
?>
<ul>
<?php while ( $posts->have_posts() ) : $posts->the_post(); ?>
  <li><?php get_template_part('loop') ?></li>
<?php 
endwhile; 
wp_reset_postdata(); 
?> 
</ul>
<?php 

  restore_current_blog(); //switched back to current site 
?>