EE 2.4:
{exp:channel:entries channel="performances"
sort="asc"
limit="5"
paginate="both"
dynamic="no"
category="4"
}
In my channel entries tag, I have paginate=“both”. I’d like the code within my {paginate}{/paginate} tags to show up even if there is only one page available for styling purposes. Everything works great when there are indeed multiple pages. Is there some kind of parameter I’m missing?
Pagination code is kind of long but doesn’t contain any conditionals. The general gist is:
{paginate}
<unrelated html>
{pagination_links}
{previous_page}...{/previous_page}
{page}...{/page}
{next_page}...{/next_page}
{/pagination_links}
<unrelated html>
{/paginate}