picocms / Pico

Pico is a stupidly simple, blazing fast, flat file CMS.
http://picocms.org/
MIT License
3.83k stars 617 forks source link

skip next and prev-page #449

Closed AndiLeni closed 6 years ago

AndiLeni commented 6 years ago

Hello, I wanted to know wether it is possible to skip a page in prev_page and next_page. Concretely I want to skip a page named "search" in my pagination.

Thanks in advance Andi

PhrozenByte commented 6 years ago

You can hide the desired page using a simple Pico plugin:

class HiddenSearchPlugin extends AbstractPicoPlugin
{
    const API_VERSION = 2;

    public function onSinglePageLoaded(array &$pageData)
    {
        if ($pageData['id'] === 'search') {
            $pageData['hidden'] = true;
        }
    }
}
AndiLeni commented 6 years ago

Thank your for your answer! Works perfectly.