What would be the equivalent in Craft of ExpressionEngine's Next/Previous entry linking? I was looking at getNext() and getPrev() (and their aliases next and prev) (via the EntryModel docs), but when I try the obvious:
<a href="{{ entry.prev.url }}">Previously: {{ entry.prev.title }}</a>
I just get the current entry's data.
What piece am I missing here?
entryalready set for the URL I'm viewing would know about what came before and after. – Derek Hogue Jun 12 '14 at 13:56craft.entries.section(mySection).order('postDate desc, id asc'). – Mike Vaux Apr 06 '16 at 09:30