I have a MySQL table with about 500 rows of entries each containing: title, author, series, and series number.
Would anyone know how to mass convert the data into (1 entry per post) custom post type with title becoming post title, author and series as separate custom hierarchical taxonomies, and series number as a custom meta?
I’m planning to change from a simple MySQL database management system into a site in a WP MS installation.
You can use the following method :
file out of it
a PHP script and put the data into an array
You will need the following functions to insert the data into WP :
I suggest before doing all that you register the custom post type and taxonomies you are going to use in WP.
Quick tips, as mike23 suggest export the table as CSV, the use the plugin CSV Importer to import data back in wp. Read the docs on the plugins page.