它似乎不是用于从网络中的其他站点获取数据的WP网络主对象,例如,$WP\\u Network->site1->get\\u post\\u type(“事件”)。我使用为自定义帖子类型自动生成的RSS提要解决了这个问题。feed可在[custom post slug]/feed上使用
How to read the data from other WP sites
WP附带SimplePie,便于RSS操作。
$rss = fetch_feed(\'http://exmaple.com/[custom post slug]/feed\');
$rss_items = $rss->get_items(0, 10);
foreach ($rss_items as $item) : ?>
<h4><?php echo esc_html($item->get_title()) ?></h4>
<?php endforeach; ?>