Hey guys! This is probably a total newbi question, but I cant figure it out myself.
I use two links to get to the previous or next page. When the user is on the last page, I want the next link to show the first page.
When the user is on the first page I want the previous link to show the last page. How can I do this with the API?
This is my second site with PW, so Iam still trying to figure things out. Here is my code:
<ul id="nav">
<li class="nav-left"><a href="<?php echo $page->prev->url; ?>" class="arrow"><img src="<?php echo $config->urls->templates?>img/site/arrow_left.svg"></a></li>
<li class="nav-right"><a href="<?php echo $page->next->url; ?>" class="arrow"><img src="<?php echo $config->urls->templates?>img/site/arrow_right.svg"></a></li>
</ul>
Thx!