Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Show any articles starting a given date
Hi, I would like to show all articles including furute and expired, starting a given date using article_custom
please.
I do not know the corrent syntax for that, so something like:
<txp:article_custom
section="events"
limit="10"
expired="1"
time="any 2023-05-07 06:00:00"
>
<txp:title />
</txp:article_custom>
Offline
Re: Show any articles starting a given date
Try this:
<txp:article_custom
section="events"
limit="10"
expired="1"
month="2023-05-07 06:00:00"
time="since"
>
<txp:title />
</txp:article_custom>
Offline
Re: Show any articles starting a given date
Thank you! it seems to work great 👍👍👍
Offline