page.prevSibling.url

Hello,

I have a question about using page.prevSibling.url and page.nextSibling.url. These were used in the “templates/partials/blog_item.html.twig” page. I want to use it for a folder that doesn’t use the “item” page file type. However, when I put the code into a new partials file, the button doesn’t go to the previous folder. It just stays in the same folder. Is there a difference between the blog folder and the other folder that makes the buttons work in one and not the other? Thanks.

prevSibling and nextSibling require the pages to be in a collection of some type. You cannot just arbitrarily navigate around folders with them. More info on page collections

Oh, got it. Thanks a lot rhukster!