hi,
with zpbase 0.95 on zenphoto 1.4.6, there is a fatal error on news category.
the theme uses a deprecated function :
Fatal error: Call to undefined function printNewsBreadcrumb() in /public_html/zenphoto_dev/themes/zpbase/news.php on line 65
Thanks Vincent.
@Acrylian: printNewsBreadcrumb is not listed as deprecated. printNewsTitle is not a replacement as they do very different things. printNewsBreadcrumb (pasted below) prints "Archive" in the breadcrumb when applicable, or "News" or custom name for News. I think this function or a version there of is very much needed. I am wondering if it was removed by mistake (since not listed in deprecated file). PrintNewsTitle prints the title of a single news item, very different.
`
/**
On the current 1.4.6 build there is actually no printNewsBreadcrumb anymore, it has been renamed as I said. No mistake actually. See the news.php of Zenpage theme how we do it actually.
News articles don't have any breadcrumb anyway as they have no hierachy, only pages and categories have. For those there is printZenpageItemsBreadcrumb() for that purpose.
It is not deprecated because it "never really existed". We had deprecated the prior in 1.4.6 function in favor of printNewsBreadcrumb, but the team voted that this was a misleading name so it went back as on 1.4.5. No deprecation because printNewsBreadcrumb was never a released function.