My weblog has a few standard fields (summary and body) and I’m adding a custom date field (eventdate) that holds information about the date of a future event. Not all entries will have an eventdate. I’d like to display the linked title of all future events:
Upcoming Events
———————-
10/19 - Event 1
10/22 - Event 2
Any ideas on how I can do this using out of the box EE functionality?
Questions:
1. Is there a way to specify the weblog:entries tag to only return weblog entries where eventdate != “”? Or where eventdate > current_time?
2. If I have to do that comparison inside the weblog:entries tag, how do I do so? I tried {if eventdate > current_time} but it didn’t work for me.