[ad_1]
I’m building out a directory feature for a WordPress site I’m working on.
To facilitate that, I’m creating pages to hold a target navigation structure, like:
https://preview.redd.it/v95vc3hku58d1.png?width=567&format=png&auto=webp&s=8887c709f6e964ebf69d22ddb73819ee5b557969
Etc
Is there any plugin for creating internal/navigation pages more quickly and effectively than making them by going through the normal page “UI” (and yes, I want these to be actual pages as I’ll be popping shortcodes into them for the various categories)?
TIA!
[ad_2]
It’s certainly possible to do what you want in php code you write using [wp_insert_post()](https://developer.wordpress.org/reference/functions/wp_insert_post/).
You could also use an external program and the [REST API](https://developer.wordpress.org/rest-api/reference/pages/).
Is there an existing plugin in the repo to do it? Hard to say without more information about what you want to do.