Is there any way to loop through the ZenPage Pages?
I would like to print a list of Pages with title, date and content with 'read more' links when visiting the directory /zenphoto/pages/
Like when you do a search for a Page title.
I have found the next_page function but it seems only for search purposes.
In my theme's pages.php
`
// if there is no content it means we are looking at a blank pages.php
if (!getPageContent()) {
while (next_page()) : ;
endwhile;
}
`
Comments
Okay, that was very helpful!
Cheers :-)