jlittlejohn
5/20/2016 - 1:02 AM

SQL: Change Author Attribution On All Posts

SQL: Change Author Attribution On All Posts

SELECT ID, display_name FROM wp_users;
UPDATE wp_posts SET post_author=NEW_AUTHOR_ID WHERE post_author=OLD_AUTHOR_ID;