如何从网络中的其他站点检索帖子摘录

时间:2017-12-19 作者:Frank

是否可以从我的多站点网络中的其他站点获取文章摘录?

1 个回复
SO网友:David Sword

是,使用switch_to_blog() 您可以加载另一个Wordpress站点,获取所需内容,然后恢复到当前站点并结转任何检索到的数据。

// the different site ID in your Wordpress Network
$otherSite = 3;

// the post excerpt you\'re after in the different site
$otherSitesPost = 42;


switch_to_blog( $othersite );

$otherSitesPostExcerpt = get_post($otherSitesPost)->post_excerpt;

restore_current_blog();

echo "Site #{$otherSite} post #{$otherSitesPost} excerpt: {$otherSitesPostExcerpt}";

结束