I am getting somewhere, together with your suggestion in an other thread using getNewsArticles()
I put together a page that shows only news articles within a defined category and that differs from the default pagination..
one thing though: the printNewsPageListWithNav() does not stay within the category..
e.g it shows the pages for all articles.. any hints?
`
<?php // news article loop on blog page
setOption('zenpage_articles_per_page','5','false');
$results = getNewsArticles('20','blog',NULL);
foreach ($results as $item) {
$newsobj = new ZenpageNews($item['titlelink']);
echo $newsobj->getContent();
}
printNewsPageListWithNav(gettext('<'), gettext('>'));
?>
`