Hi everyone,
I'm using the ProcessBlog module successfully and adding a nice pagination with MarkupPager. All very successful thanks to pointers from the forums here!
However, when generating the category pages I can't find a way to use $page->find with a selector for the blog categories. The categories for an individual post are within an array of categories called 'blog_categories'.
What should the $page->find construct look like if the categories are within $child->blog_categories? I've tried a few possibilities including this with no luck:
Each page has the same name as the category (e.g. 'Events')
$posts = $pages->find("template=blog-post, limit=6, blog_categories%=$page->title");
And this:
$posts = $pages->find("template=blog-post, limit=6, blog_categories.title%=$page->title");
Any ideas? Is this even possible? All contributions gratefully received!