In the “members area” of my web site I have a page that shows the current “article” and on the left side of the page the links to the most recent 25 articles.
This is the working line of code for that list of links.
{exp:weblog:entries orderby="date" sort="desc" limit="25" weblog="{my_weblog}" category="5" dynamic="off" member_group="5|1"}What I want to do is create an “archive” section for people that are not members as a “demo” of the web site.
For this archive I want it to display articles that are over a month old. [now - 1 month]
I know that I would do away with the member_group part of that line of code so it can be seen by everyone. But how do I get it to give me a list of the 25 articles in descending order, where that list starts at the first article that is more than 1 month old and gets the next 24 older ones?
Thanks,
Jim.