您可以只使用该函数switch_to_blog 在对您的post\\U类型运行WP\\U查询之前;项目;。
将当前博客切换到其他博客。如果需要从其他博客获取帖子或其他信息,请将\\u切换到\\u blog()。
听起来这就是你想要的。因此,假设您的内容位于main\\u站点上。在mobilesite上运行此操作:
// Get current blog_id
global $blog_id;
// Run this code if on mobilesite
// Change from blog_id 2 if another id
if( $blog_id == 2 ) {
// Switch to the main_site
switch_to_blog(1);
// Get from projects and all of the posts
$args = array(
\'post_type\' => \'projects\',
\'posts_per_page\' => -1
);
// The Query
$the_query = new WP_Query( $args );
// The Loop
while ( $the_query->have_posts() ) :
$the_query->the_post();
echo \'<li>\' . get_the_title() . \'</li>\';
endwhile;
// Restore original Query & Post Data
wp_reset_query();
// Switch back to mobilesite
restore_current_blog();
}