Advertisement
Guest User

Untitled

a guest
Oct 16th, 2011
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'numberposts' => 5,
  4. 'orderby' => 'date',
  5. 'post_type' => 'tribe_events',
  6. 'tribe_events_cat' => 'homepage-slider',
  7. 'post_status' => 'publish'
  8. );
  9. $show_myevents = get_posts ( $args );
  10. foreach( $show_myevents as $post ) : setup_postdata($post); ?>
  11.  
  12. <!-- html for displaying posts here -->
  13.  
  14. <?php endforeach; ?>
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement