Guest User

ECP change query for list.php

a guest
Oct 30th, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1.  
  2. <?php //code to show only one of each event
  3.  
  4. $args = array(
  5. 'post_type' => 'tribe_events',
  6. 'showposts' => -1,
  7. 'meta_query' => array(
  8. array(
  9. 'key' => '_EventStartDate',
  10. 'value' => date,
  11. 'compare' => '<'
  12. ),
  13. )
  14. );
  15.  
  16. query_posts( $args );
  17.  
  18. // also tried WP_Query - $evs = new WP_Query($args);
  19.  
  20.  
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment