ticket sort order in php
-
Hi,
I’m using php code to display my tickets in a widget and need to sort the order. It does not work changing the order wth the arrows in admin, propably because I’m using custom php code.
Now they are sorted in the order they were entered. How can I manilpulate this in my code?
<?php $tickets = eo_get_event_tickets_on_sale( $post->ID, $post->occurrence_id ); echo '<ul>'; foreach( $tickets as $ticket ){ printf( '<li> %s </li>', esc_html( $ticket['name'] ) ); } echo '</ul>'; ?> <?php the_field('tid_pris_info'); ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘ticket sort order in php’ is closed to new replies.