Hi,
i'm trying to build a simple blog. Thanks to this forum it is working good.
But i ran into a problem. How can i match my categories with the title?
When i visit the page "Buchbinder" it should show me all pages that tagged with the category "Buchbinder" under "Neuigkeiten".
How can i do that?
My category page now looks like this:
$blog_category = $pages->find("template=blog-entries");
foreach ($blog_category as $category) {
echo "<a href='{$category->url}'>{$category->title}</a> ";
}
But how can i now say match the title from this site?
thanks Marcel