我真的解决了这个问题。。。如果有人需要做类似的事情,您需要做以下几点:
所以,你不能真正查询网站,但你可以查询网站上的页面。。。因此,我所做的是在网站上创建一个新页面,所有内容看起来都很好,嵌入短代码,只在其他网站上查询该页面和内容。您需要将站点切换到该站点才能在另一个多站点上检索它。您可以在wp admin的“sites”下查找,以查看站点ID。
示例:
<?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();
?>