First post here 😊
Is there any way to only show the past entries while using {exp:channel:entries}?
I’ve tried to use stop_before={current_time format='%Y-%m-%d %H:%i'} as a parameter, but it still shows entries that have not expired yet.
I want to make a page with archived events only. This is what I have:
{exp:channel:entries
channel="events"
dynamic="no"
show_expired="yes"
show_future_entries="no"
orderby="event_date"
sort="asc"
status="open"
stop_before={current_time format='%Y-%m-%d %H:%i'}}
[...]
{/exp:channel:entries}I also found this thread: http://ellislab.com/forums/viewthread/102726/ but no solution there as I want working pagination.
Any suggestions?