I have a site structure that I want to create a bunch of empty pages – each with a particular parent page and template. Is there a faster way to do this than one-by-one? A plugin perhaps?
Leave a Reply
You must be logged in to post a comment.
I have a site structure that I want to create a bunch of empty pages – each with a particular parent page and template. Is there a faster way to do this than one-by-one? A plugin perhaps?
You must be logged in to post a comment.
Direct injection in to the DB. Have a look at the codex for
$wpdb
. I’d suggest putting a line of code in to afor()
loop so that you can run it as many times as you want.