Peter Bödeker
I have a question about the following inclusion:
{articles created="date('-50 days') to now()" ordering="created DESC" limit="3-7"}
Let's say I have only 1 article that meets this condition. Nevertheless, it is displayed. How can I prevent this?
Background to my question: I have the most recently updated articles appear interrupted on the start page (
www.yoga-welten.de
). Since I was a little lazy in creating new articles, the same article now appears again and again:
{articles created="date('-50 days') to now()" ordering="created DESC" limit="1-2"}
- the article should be displayed here
{articles created="date('-50 days') to now()" ordering="created DESC" limit="3-7"}
{articles created="date('-50 days') to now()" ordering="created DESC" limit="7-10"}
{articles created="date('-50 days') to now()" ordering="created DESC" limit="10-12"}
-> The same article will be displayed 3 more times, but it should not be .... Can I perhaps adjust the limit range to prevent this?
Have I been able to explain the problem in an understandable way?