使用类似函数时wp_insert_post()
它将在当前活动的博客上工作,这意味着如果您在网络中的博客上,blog\\u id为2,则使用插入的帖子wp_insert_post()
将被插入到该博客。
现在,如果您想将文章插入到特定的博客中,您可以使用switch_to_blog()
该函数将告诉WordPress“当前博客是”,以便您可以使用wp_insert_post()
插入到特定的博客。
然后告诉WordPress你现在可以使用的真正的博客是什么restore_current_blog()
因此:
switch_to_blog($wanted_blog_ID);
...
...
your wp_insert_post() stuff
...
...
restore_current_blog();
看看
WPMU Functions 了解有关网络中可用功能的更多信息。