Import existing image as a single post

See my answer here:

The Media Library lives in both wp_posts and wp_postmeta.

  • wp_postmeta contains the image URL
  • wp_posts contains an entry for each image insertion into a post, along with the post ID.

Exporting and importing these 2 tables as SQL did not work for me – I received ‘duplicate entry for key 7’…

Exporting and importing these 2 tables as CSV did work, using “CSV using load data”.

Before importing, I emptied the 2 tables in the recipient database.