Because of imports, my posts are listed under two authors--both me. I remember seeing a plugin that allowed transfer of posts from one author to another, but I'm not finding it.
Any tips?
Thanks!
Because of imports, my posts are listed under two authors--both me. I remember seeing a plugin that allowed transfer of posts from one author to another, but I'm not finding it.
Any tips?
Thanks!
I don't know about plugins but this SQL update will work in your favourite MySQL client:
update wp_posts set post_author=NEWID where post_author=OLDID;
where OLDID is your old user-id and NEWID is the new one.
This topic has been closed to new replies.