Post-POST-script -- Well, I got it all working (see below) but now have a bu(er...)Feature report. The "prev/next" pagination currently doesn't skip over entries for which the user has no access. That is:
- It produces a next or previous link to an entry that is not accessible by the user, and
- if the user clicks on the link it will put up a "No entries to display" page, which would be fine, except
- prev/next page options will no longer appear on the inaccessible entry, so the viewer will have hit a dead end.
= = = = =
Post-script: I followed my own advice (below) and it worked (with a bit more granularity than I expected
= = = = =
I really did search around for this. I'm sure it's out there somewhere, but I couldn't come up with the right search string on this one.
The serendipity_event_entrypaging plugin installed fine, and I was able to easily place it at the top of the page.
I'd like to put it in my own div class though, and I'm fairly sure that the third option in the "Placement" drop down alludes to how I do this.
The third option says:
Smarty {$pagination_(next|prev|random)_(title|link)}
I'm assuming this means I can put something like this:
{$pagination_prev_title}
in the entries.tpl and it will display a link to the "previous" entry (however it is defined in the plugin).
Is this right? Do I need to preface this with "$smarty.pagination..." or any similar thing? Or can I just put the above code (or similar) wherever I want it in the template?
Question 2: Will this automatically include the > < parts produced by the first two options?
Thanks.
-s