I’m running a WP multisite-network on my professional website (http://mydomain.com). I’d like to play around with jQuery Mobile and deliver a different website and web experience to mobile users, so I created another site in this network on http://m.mydomain.com.
On the main (desktop) WP site, I created a “project” content type to sort my professional projects. On the mobile site I’ll create, I’d like to be able to load these projects (from the desktop-WP db) instead of having to recreate all the projects to the mobile-WP site.
I already worked on something similar: I had to access WP content through a subdomain of the main WP site, using the ‘require wp-load.php’ technique, but I’m wondering if there is a built-in function in WP to do this in a cleaner way, as both sites are on the same network.
You can just use the function switch_to_blog before running the WP_Query on your post_type “projects”.
Sounds like this is what you want. So lets say you have your content on the main_site. Run this on the mobilesite: