I’m working on a plugin which has bulk post inserts using a spreadsheet. This spreadsheet can have multiple thousand rows, each row corresponding to a post. I’m parsing this spreadsheet, looping over the parsed data and using wp_insert_post
to insert the posts. I noticed that when I used a spreadsheet with around 2000 entries, only around 600 posts were inserted.
Is there a limit on the number of wp_insert_post
calls in one shot? Or could it be a limit on one shot mysql
inserts?
(edited title for more clarity)