I like to have a clean blog, and I also like that comments that are replies to other comments actually are replies to other comments. Some people don’t mind that difference too much and just leave another comment instead of a reply. That’s alright, but I’d like to fix it so that my blog stays clean and so that things are clearer to myself.
Is there a way that I can “move” a regular comment so that it becomes a reply to a certain comment instead?
first, if you’re not already using it, you need wordpress threaded comment. you can stylize it with css of course.
after that, if someone comments the post, and you think it was supposed to be a reply to some other comment, you can do it with move wordpress comments or just do it manualy…
I use two plugins for moving comments, have used them on a site for moving over 1,000 comments to various posts (most of my commenter’s posted 90%+ comments on one popular post no matter what the comment was about!).
http://www.dountsis.com/projects/move-comments/ : this allows you to move multiple comments in one go. This one is useful for moving entire threads from one post to another.
The plugin recommended by pootzko : move one comment at a time including changing threading.
Note: if you move a threaded comment with replies to another post and don’t move the replies as well it “breaks” the threading, you’ll find the child comments aren’t threaded correctly. So you have to move them all in a thread (or remove the threading on the child comments).
David
A alternative for custom source. I had read this answers, but the plugins are old or with to much options and I will leave my small solution.
I never knew itâs that simple to copy all comments from one WordPress post to another. The following snippet copies all posts from
$post_id
to$new_post_id
.get_comments()
is a convenience function around WP_Comment_Query, so if you put this snippet inside a loop you can omit the âpost_idâ parameter.Oh, and if you donât need to copy but to move the comments, you may be better off by just firing some good old SQL against your database: