Reverse order for past events only?
-
Hi!
Thanks for a great plug-in. I’ve tried more than 10 different ones until I stumbled upon this one which does exactly what I want, shows calendar posts via shortcode.
I’m not using the subpages at all so I just want all the calendar posts on my start page. I want upcoming events to be ordered ASC but past events to be ordered DESC. Would it be possible to add a sorting parameter to the shortcodes?
Another question is if it’s possible to implement ajax functionality to show old posts instead of reloading the whole page? Right now I’ve built my own show old posts function by hiding past posts and showing them by clicking a link, but I’d love to use your filter function instead if it’s through ajax. My version is bad because it’s loading everything and just hiding it.
<div class="calendar-upcoming"><?php echo do_shortcode('[event-list show_filterbar=false link_to_event=false initial_date=upcoming]'); ?></div> <div class="calendar-past" style="display: none;"><?php echo do_shortcode('[event-list show_filterbar=false link_to_event=false initial_date=past]'); ?></div> <a href="#">Show Past Events</a>
Thanks for help!
- The topic ‘Reverse order for past events only?’ is closed to new replies.