in my PyroCMS website I want to display rock shows of a rock band that will occur in the future. I use a conditional to check whether the date of the blog post (which contains the rock show information) occurs in the future or not. But apparently PyroCMS does not show any blog post that has a date in the future. How can I solve this?
Below the code that I use:
<h2>Upcoming shows</h2>
{{ blog:posts category="shows" order-by="created_on" order-dir="asc" }}
{{ if created_on >= time() }}
<div class="upcoming_show_info">{{title}}</div>
{{ endif }}
{{ /blog:posts }}
Thanks!