从多站点中的站点获取帖子?
我正在尝试拉多个网站的帖子。例如,我可以按类别和总帖子数拉出单个网站帖子。 但是,我试图从两个单独的多站点博客1和2中提取两个帖子。但是只有博客1有效。另外,我想从博客1和博客2中提取另一个类别。我该如何实现? 这是我想做的事情: <?php global $switched; switch_to_blog(1,2); //switched to 1 & 2 but only 1 working // Get latest Post $latest_posts = get_posts('&cat=64&showposts=10'); $cnt =0;?> <ul> <?php foreach($latest_posts as $post) : setup_postdata($post);?> <li> <a href="<?php echo get_page_link($post->ID); ?>" title="<?php echo $post->post_title; ?>"><?php echo short_title('...', 7); ?></a> </li> <?php endforeach ; …