To convert database from pLog to WordPress, you basically need to run 2 SQL queries, assuming you have them on the same server.
# Post-Categories Relationship
INSERT INTO db_wordpress.wp_post2cat (post_id,category_id)
SELECT r.article_id,r.category_id FROM db_plog.plog_article_categories_link r
Leave a Reply