We're running a large number of sites, each on completely unrelated domains, using WP multisite. We also have a plugin (a regular one, which is network enabled - so available on all sites) for which I'd like to create pages on other blogs.

Specifically, the plugin creates a metabox on the page edit webpage, which provides an option for updating similarly named pages on other blogs in the network. If no similarly named page exists on any specific other blog, it must be created.

Neither wp_update_post(..) nor wp_insert_post(..) take a blog_id parameter and I don't see any multi-site specific equivalents.

Some ideas:

  1. Somehow save, overwrite and restore the current_blog global? (will that work? - what other globals would have to be overridden also?)
  2. Duplicate the code for wp_update_post() and wp_insert_post() with appropriate mods (hate to do that if there is a way to avoid it, for the obvious maintenance headache it might cause)
  3. Create a simple REST service for creating/updating pages and have the plugin call it on the actual domain for which the page should be inserted/updated. Seems like overkill if there is another way (and haven't considered if there are already API call or that? or if there would be any issue with issuing additional parallel HTTP requests to (potentially) the same server)

This is my first major WP plugin. Although I've been working with WP now for several months, I'm still far from having mastered plugin development.

Help & suggestions appreciated.

link|improve this question

40% accept rate
Went with 3 - created a simple REST API and called out to each domain to create a page on that site. – DavidJ Dec 19 '11 at 19:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.