Hello Kunal,
I'm trying to display event list order by date (next event has to be
the first on the list and in upcoming events.)
I'm using thematic with wordpress, you can check the website @
http://jammintroopers.be/events/
I've tried to modify the event_details.php file with:
<?php $posts = query_posts( Array(
'post_type' => 'ep_event',
'meta_key' => '_ep_start',
'order' => 'DESC',
'orderby' => 'meta_value',
'meta_compare' => '>=',
'meta_value' => time()
) );
?>
(The output is an infinite loop and browser crash)
I've tried this : <?php $posts = query_posts( $query_string .
'&orderby=title&order=desc' ); ?>
All I want is display event in another ORDER,
But It does not work, So I hope you could help me on that point.
Thak you.