flatpressblog / flatpress

FlatPress is a lightweight, easy-to-set-up flat-file blogging engine.
https://flatpress.org
GNU General Public License v2.0
185 stars 57 forks source link

Back and forth in the calendar plugin #128

Closed Fraenkiman closed 3 weeks ago

Fraenkiman commented 2 years ago

Hello, everyone.

Suggested improvements: Create the ability to jump back and forth in the calendar without having to use the outdated each () function.

Best regards from Berlin

Fraenkiman commented 1 year ago

Thought experiment: There is already the function "nextpage, prevpage" in the file fp-includes/core/core.fpdb.class.php

Can't this one be taken as a workaround? global $fpdb;

    $p = '<span class="calendar-prev"><a href="' . $prevpage . '">&laquo;</a></span>&nbsp;';
    $n = '&nbsp;<span class="calendar-next"><a href="' . $nextpage . '">&raquo;</a></span>';

I did not get it running though

Fraenkiman commented 3 weeks ago

Solved with 69ef6b0.