您要启用WPMU 并使用自定义函数从一个博客获取/发布数据到另一个博客(使用switch_to_blog). WPMU为您在一个WP安装上创建的每个博客安装不同的表。
如果您想拥有相同的设计,可以在一个WP安装上启用子主题。您不能仅仅为了获取不同的数据而在子主题和父主题之间切换。你应该把事情弄清楚。
Example: (不完整-我用更多的来做我的工作)
function copy_data_to_other_site($post_id)
{
$current_user = get_current_user_id(); // get user id
$target_blog_id = get_user_meta($current_user, \'primary_blog\', true); // get blog id by user
$post = get_post($post_id, ARRAY_A); // get the original post
$the_slug = $post[\'name\'];
switch_to_blog($target_blog_id); // switch to target blog
$args = array(
\'name\' => $the_slug,
\'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'numberposts\' => 1
);
$my_posts = get_posts($args);
$target_car = wp_insert_post($my_posts); // insert the post
restore_current_blog(); // return to original blog
}