Import single post and its comments
-
Hi, I have a somewhat unusual question. On my site, I have a specific post with 78 comments. Now that Ive set up bbPress, Id like to move the entire discussionincluding the post and all commentsinto a forum as a topic with replies.
I havent found a ready-made way to do this. Using WP-CLI, I exported all 78 comments to a CSV file in the following format:
“author_id”,”date_time”,”comment_text”
I then tried creating a shell script that uses tail on the file, processes it with sed and cut to separate the columns, and then loops through an import with wp cli post create using post_type=reply and post_parent set to the main post (which I can easily create manually).
But with my very basic knowledge, I havent been able to get it to work, so Im giving up trying on my own.
I only want to do this operation for this specific post, and maybe one more with 12 comments. It would be wonderful to have it moved as a topic in the bbPress forum.
Does anyone happen to have a ready solution, or a bit of time to help me out?
- You must be logged in to reply to this topic.