Hi
@crylian,
I may have found a minor omission in "zenpage-template-functions.php.
I was getting a html validation error.
The generated active link in the function below is not between
` tags`
function printNewsPageListWithNav....
this part
`
for ($i=$j; $i <= min($total, $j+6); $i++) {
if($i == $current) {
<strong>echo $i."\n"
`
I think `echo $i."\n"` should be `echo "".$i." \n"`
Hope I helped.
Cheers
Comments