When all your posts and terms from one site are the same as on your other site, you can use the instructions below to copy the connected wp posts in your database directly.

Please backup your database before.

  1. When not done, click on “init translation tables” in our plugin settings > general at the bottom.
  2. Then check in these databases if IDs are inserted:
    wp_posts_translations
    wp_terms_translations
  3. If yes, you can use this SQL to copy the ID from one column to the other (a column is your site ID).
    UPDATE `wp_posts_translations` SET `2` = `1`
    UPDATE `wp_terms_translations` SET `2` = `1`

    This will copy data from column 1 to column 2.

Leave a Reply

Your email address will not be published. Required fields are marked *