Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Listing articles between two relative dates
I’ve got a collection of little articles that I’d like to select from, in a random assortment, from those posted more than a month ago, but less than five months ago.
This tag does fine in selecting from the past month, for instance:
<txp:article_custom time="since" month="-1month" sort="rand()" limit=5 />
But I can’t wrap my head around how to set it so the range isn’t between now and 1 month ago, but between 1 month ago and 5 months ago.
Offline
Re: Listing articles between two relative dates
Have you tried something like
<txp:article_custom month="-1month" time="-4months" sort="rand()" limit="5" />
IIRC, time
is relative to month
(if set).
Offline
Re: Listing articles between two relative dates
And of course it’s something that simple. Thanks!
Offline