Hey!
I am trying to create a page that will serve as my sitemap. Ideally, I would like it to display all the “pages” of the site, and display them in their parent/child relationship. (kinda like below) There are also a number of specific pages I would need to exclude from this output (the sitemap page being one, and then an array of several others).
Ex:
Is this something that is easily done through Loopers? I’ve been struggling for a while to get an output of the current looper items immediate children.
I’m currently trying:
Parent Column with Looper Provider - Query String
post_type=page&orderby=title&posts_per_page=-1&order=ASC&post__not_in[]={{dc:post:id}}
Div level 1 as Looper Consumer
Div level 2 with Looper Provider - Query String
child_of={{dc:post:id}}
Div level 3 as Looper Consumer
But it isn’t working, nor do I even think my first query is correct, because it displays all the pages, including pages which are children pages. Any help would be great.
Thanks!