ZenphotoCMS Forum
Different number of posts on news and newscategory pages - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: Different number of posts on news and newscategory pages (/thread-10189.html)



Different number of posts on news and newscategory pages - jackdaw - 2012-07-12

Under the zenpage options I can set one number for the complete news pages and for the seperate newscategory pages. How can I set a different number for each?

I'd like:

  1. 15 posts per page for the news pages (with pagination)
  2. no limit for posts per page for the news archive and the newscategory pages (they only contain a list of the title and date and no content)



Different number of posts on news and newscategory pages - acrylian - 2012-07-12

You will have to modify the theme to do so using setOption('zenpage_articles_per_page', '10', false);You will of course need to add checks if you are on a category or archive display.

http://www.zenphoto.org/documentation/functions/_functions-basic.php.html#functionsetOption

http://www.zenphoto.org/documentation/plugins/zenpage/_zp-extensions---zenpage---zenpage-template-functions.php.html#functionis_NewsArchive

http://www.zenphoto.org/documentation/plugins/zenpage/_zp-extensions---zenpage---zenpage-template-functions.php.html#functionis_NewsCategory




Different number of posts on news and newscategory pages - jackdaw - 2012-07-13

Ok, thanks. Is it sufficient to add the setOption in the header of the appropriate page?




Different number of posts on news and newscategory pages - acrylian - 2012-07-13

It is actually only important that you do it before the loop that should use it but the `` is a good place (we use this on the user guide/extension to display those alphabetically).