Best practice for adding posts in bulk
There are many options, but these functions are your friends: wp_insert_post – pass it some arguments and it will create a post and if succesful, return the post ID wp_set_object_terms – pass it a post ID, a custom taxonomy, and the terms you’d like to set fopen – for opening a csv file fgetcsv – … Read more