How to get post from all Blog Multisite to the Main Site?
So, actually there is two ways to do it. The first one is using switch_to_blog() and restore_current_blog() functions, example: // in this variable you can pass all the blog IDs you would like to display posts from $blog_ids = array( 1, 3 ); foreach( $blog_ids as $id ) { switch_to_blog( $id ); $args = array(); … Read more