Order by date – where to put in
-
I modified this function for showing events on a page but i dont know how to sort it by date or title?
Can someone help me?
<?php // TICKERA ALL EVENTS add_shortcode( 'tc_all_events', 'tc_all_events' ); function tc_all_events() { $wp_events_search = new TC_Events_Search( '', '', '', 'publish' ); foreach ( $wp_events_search->get_results() as $event ) { // echo '<div class="smticketcalendar"><h3>' . $event->post_title . '</h3>'; echo '<div class="smtickets"><div class="smticketstitle"><a id="SM-'.$event->ID.'" href="'.$event->guid.'">'.$event->post_title.'</div></a>'; echo '<div class="smticketsdate">' . mysql2date('l, \d\e\r d. F Y \u\m H:i \U\h\r', $event->event_date_time ). '</div>'; echo '<div class="smticketslocation">' . $event->event_location . '</div>'; echo '<div class="smticketshide" tabindex="0"><div class="smticketstickets">TICKETS</div>' . do_shortcode( '[tc_event id="' . $event->ID . '"]' ).'</div></div>'; } } ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Order by date – where to put in’ is closed to new replies.